Craft.io · Schema
FormCustomField
Product ManagementRoadmapsOKRsBacklogFeedbackPortfolioSpecifications
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| type | string | |
| values | array | |
| options | array | |
| optionShape | object | |
| required | boolean |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/craft-io/main/json-schema/craft-io-formcustomfield-schema.json",
"title": "FormCustomField",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"values": {
"items": {
"type": "string"
},
"type": "array"
},
"options": {
"items": {
"$ref": "#/components/schemas/CustomFieldOption"
},
"type": "array"
},
"optionShape": {
"$ref": "#/components/schemas/OptionShape"
},
"required": {
"type": "boolean"
}
},
"required": [
"id",
"name",
"type",
"required"
],
"type": "object",
"additionalProperties": false
}