OAuth Bearer Token

Attributes for configuring OAuth Bearer Token authentication scheme for SCIM provisioning to an application.

APIs.ioEngineeringPlatform

Properties

Name Type Description
scheme string The authentication scheme to use when making SCIM requests to this application.
token string Token used to authenticate with the remote SCIM service.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-scim-config-authentication-oauth-bearer-token-schema.json Raw ↑
{
  "$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"
}