main
1# frozen_string_literal: true
2
3module Scim
4 module Kit
5 module V2
6 module Messages
7 CORE = 'urn:ietf:params:scim:api:messages:2.0'
8 BULK_REQUEST = "#{CORE}:BulkRequest".freeze
9 BULK_RESPONSE = "#{CORE}:BulkResponse".freeze
10 ERROR = "#{CORE}:Error".freeze
11 LIST_RESPONSE = "#{CORE}:ListResponse".freeze
12 PATCH_OP = "#{CORE}:PatchOp".freeze
13 SEARCH_REQUEST = "#{CORE}:SearchRequest".freeze
14 end
15 end
16 end
17end