Auth0 · Schema

FormSummary

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
name string
created_at string
updated_at string
embedded_at string
submitted_at string
View JSON Schema on GitHub

JSON Schema

auth0-formsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormSummary",
  "title": "FormSummary",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "id",
    "name",
    "created_at",
    "updated_at"
  ],
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 30,
      "format": "form-id"
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 150
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "embedded_at": {
      "type": "string",
      "format": "date"
    },
    "submitted_at": {
      "type": "string",
      "format": "date"
    }
  }
}