main
1# frozen_string_literal: true
2
3json.key_format! camelize: :lower
4json.meta do
5 render meta, json: json
6end
7json.schemas [Scim::Kit::V2::Schemas::SERVICE_PROVIDER_CONFIGURATION]
8json.documentation_uri documentation_uri
9json.patch do
10 render patch, json: json
11end
12json.bulk do
13 render bulk, json: json
14end
15json.filter do
16 render filter, json: json
17end
18json.change_password do
19 render change_password, json: json
20end
21json.sort do
22 render sort, json: json
23end
24json.etag do
25 render etag, json: json
26end
27json.authentication_schemes authentication_schemes do |authentication_scheme|
28 render authentication_scheme, json: json
29end