HTTP Basic

Attributes for configuring HTTP Basic authentication scheme for SCIM provisioning to an application.

APIs.ioEngineeringPlatform

Properties

Name Type Description
password string Password used to authenticate with the remote SCIM service.
scheme string The authentication scheme to use when making SCIM requests to this application.
user string User name used to authenticate with the remote SCIM service.
View JSON Schema on GitHub

JSON Schema

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