Auth0 · Schema

CreateVerifiableCredentialTemplateRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string
type string
dialect string
presentation object
custom_certificate_authority stringnull
well_known_trusted_issuers string
View JSON Schema on GitHub

JSON Schema

auth0-createverifiablecredentialtemplaterequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateVerifiableCredentialTemplateRequestContent",
  "title": "CreateVerifiableCredentialTemplateRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name",
    "dialect",
    "presentation",
    "type",
    "well_known_trusted_issuers"
  ],
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "type": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "dialect": {
      "type": "string",
      "maxLength": 255,
      "pattern": "^simplified/1.0$"
    },
    "presentation": {
      "$ref": "#/components/schemas/MdlPresentationRequest"
    },
    "custom_certificate_authority": {
      "type": [
        "string",
        "null"
      ],
      "minLength": 1,
      "maxLength": 4096
    },
    "well_known_trusted_issuers": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255,
      "pattern": "^aamva$"
    }
  }
}