Auth0 · Schema

AuthorizationCode

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
grant_type string Denotes the flow you are using. For Authorization Code, use authorization_code.
client_id string Your application's Client ID.
client_secret string Your application's Client Secret.
code string The Authorization Code received from the initial /authorize call.
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-authorizationcode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthorizationCode",
  "title": "AuthorizationCode",
  "type": "object",
  "required": [
    "grant_type",
    "client_id",
    "client_secret",
    "code"
  ],
  "properties": {
    "grant_type": {
      "type": "string",
      "description": "Denotes the flow you are using. For Authorization Code, use authorization_code.",
      "enum": [
        "authorization_code"
      ]
    },
    "client_id": {
      "type": "string",
      "description": "Your application's Client ID."
    },
    "client_secret": {
      "type": "string",
      "description": "Your application's Client Secret."
    },
    "code": {
      "type": "string",
      "description": "The Authorization Code received from the initial /authorize call."
    },
    "redirect_uri": {
      "type": "string",
      "description": "This is required only if it was set at the GET /authorize endpoint. The values must match.",
      "format": "uri"
    }
  }
}