Auth0 · Schema

UpdateClientGrantRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
scope arraynull Scopes allowed for this client grant.
organization_usage object
allow_any_organization booleannull Controls allowing any organization to be used with this grant
authorization_details_types array Types of authorization_details allowed for this client grant.
allow_all_scopes booleannull If enabled, all scopes configured on the resource server are allowed for this grant.
View JSON Schema on GitHub

JSON Schema

auth0-updateclientgrantrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateClientGrantRequestContent",
  "title": "UpdateClientGrantRequestContent",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "scope": {
      "type": [
        "array",
        "null"
      ],
      "description": "Scopes allowed for this client grant.",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 280
      }
    },
    "organization_usage": {
      "$ref": "#/components/schemas/ClientGrantOrganizationNullableUsageEnum"
    },
    "allow_any_organization": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Controls allowing any organization to be used with this grant"
    },
    "authorization_details_types": {
      "type": "array",
      "description": "Types of authorization_details allowed for this client grant.",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 255
      }
    },
    "allow_all_scopes": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "If enabled, all scopes configured on the resource server are allowed for this grant."
    }
  }
}