Auth0 · Schema

AuthorizationCodePKCE

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
grant_type string Denotes the flow you are using. For Authorization Code (PKCE), use authorization_code.
client_id string Your application's Client ID.
code string The Authorization Code received from the initial /authorize call.
code_verifier string Cryptographically random key that was used to generate the code_challenge passed to /authorize.
redirect_uri string This is required only if it was set at the GET /authorize endpoint. The values must match.
View JSON Schema on GitHub

JSON Schema

auth0-authorizationcodepkce-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthorizationCodePKCE",
  "title": "AuthorizationCodePKCE",
  "type": "object",
  "required": [
    "grant_type",
    "client_id",
    "code",
    "code_verifier"
  ],
  "properties": {
    "grant_type": {
      "type": "string",
      "description": "Denotes the flow you are using. For Authorization Code (PKCE), use authorization_code.",
      "enum": [
        "authorization_code"
      ]
    },
    "client_id": {
      "type": "string",
      "description": "Your application's Client ID."
    },
    "code": {
      "type": "string",
      "description": "The Authorization Code received from the initial /authorize call."
    },
    "code_verifier": {
      "type": "string",
      "description": "Cryptographically random key that was used to generate the code_challenge passed to /authorize."
    },
    "redirect_uri": {
      "type": "string",
      "description": "This is required only if it was set at the GET /authorize endpoint. The values must match.",
      "format": "uri"
    }
  }
}