{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_scim_config_authentication_http_basic", "title": "HTTP Basic", "description": "Attributes for configuring HTTP Basic authentication scheme for SCIM provisioning to an application.", "properties": { "password": { "description": "Password used to authenticate with the remote SCIM service.", "type": "string" }, "scheme": { "description": "The authentication scheme to use when making SCIM requests to this application.", "enum": [ "httpbasic" ], "type": "string" }, "user": { "description": "User name used to authenticate with the remote SCIM service.", "type": "string" } }, "required": [ "scheme", "user", "password" ], "type": "object" }