Auth0 · Schema
CreateFormResponseContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| messages | object | |
| languages | object | |
| translations | object | |
| nodes | object | |
| start | object | |
| ending | object | |
| style | object | |
| created_at | string | |
| updated_at | string | |
| embedded_at | string | |
| submitted_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateFormResponseContent",
"title": "CreateFormResponseContent",
"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
},
"messages": {
"$ref": "#/components/schemas/FormMessages"
},
"languages": {
"$ref": "#/components/schemas/FormLanguages"
},
"translations": {
"$ref": "#/components/schemas/FormTranslations"
},
"nodes": {
"$ref": "#/components/schemas/FormNodeList"
},
"start": {
"$ref": "#/components/schemas/FormStartNode"
},
"ending": {
"$ref": "#/components/schemas/FormEndingNode"
},
"style": {
"$ref": "#/components/schemas/FormStyle"
},
"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"
}
}
}