Auth0 · Schema

AssociateOrganizationClientGrantRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
grant_id string A Client Grant ID to add to the organization.
View JSON Schema on GitHub

JSON Schema

auth0-associateorganizationclientgrantrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssociateOrganizationClientGrantRequestContent",
  "title": "AssociateOrganizationClientGrantRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "grant_id"
  ],
  "properties": {
    "grant_id": {
      "type": "string",
      "description": "A Client Grant ID to add to the organization.",
      "format": "client-grant-id"
    }
  }
}