Auth0 · Schema

PatchClientCredentialRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
expires_at stringnull The ISO 8601 formatted date representing the expiration of the credential.
View JSON Schema on GitHub

JSON Schema

auth0-patchclientcredentialrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchClientCredentialRequestContent",
  "title": "PatchClientCredentialRequestContent",
  "type": "object",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "expires_at": {
      "type": [
        "string",
        "null"
      ],
      "description": "The ISO 8601 formatted date representing the expiration of the credential.",
      "format": "date-time"
    }
  }
}