Auth0 · Schema
FormFieldDate
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| category | object | |
| type | object | |
| config | object | |
| label | string | |
| hint | string | |
| required | boolean | |
| sensitive | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FormFieldDate",
"title": "FormFieldDate",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"category",
"type",
"config"
],
"properties": {
"id": {
"type": "string",
"format": "forms-custom-identifier"
},
"category": {
"$ref": "#/components/schemas/FormComponentCategoryFieldConst"
},
"type": {
"$ref": "#/components/schemas/FormFieldTypeDateConst"
},
"config": {
"$ref": "#/components/schemas/FormFieldDateConfig"
},
"label": {
"type": "string",
"minLength": 1
},
"hint": {
"type": "string",
"minLength": 1,
"maxLength": 500
},
"required": {
"type": "boolean"
},
"sensitive": {
"type": "boolean"
}
}
}