access_custom-claims-support

APIs.ioEngineeringPlatform

Properties

Name Type Description
claims array Custom claims
email_claim_name string The claim name for email in the id_token response.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-custom-claims-support-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/access_custom-claims-support",
  "title": "access_custom-claims-support",
  "properties": {
    "claims": {
      "description": "Custom claims",
      "example": [
        "email_verified",
        "preferred_username",
        "custom_claim_name"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "email_claim_name": {
      "description": "The claim name for email in the id_token response.",
      "example": "custom_claim_name",
      "type": "string"
    }
  },
  "type": "object"
}