{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_scim_config_authentication_oauth_bearer_token", "title": "OAuth Bearer Token", "description": "Attributes for configuring OAuth Bearer Token authentication scheme for SCIM provisioning to an application.", "properties": { "scheme": { "description": "The authentication scheme to use when making SCIM requests to this application.", "enum": [ "oauthbearertoken" ], "type": "string" }, "token": { "description": "Token used to authenticate with the remote SCIM service.", "type": "string" } }, "required": [ "scheme", "token" ], "type": "object" }