email.schema.json
7 months ago
number.schema.json
7 months ago
password.schema.json
7 months ago
range.schema.json
7 months ago
text.schema.json
7 months ago
textarea.schema.json
7 months ago
url.schema.json
7 months ago
textarea.schema.json
16 lines
| 1 | { |
| 2 | "title": "SCF Textarea Field Fragment", |
| 3 | "description": "Type-specific properties for textarea fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "textarea" ] |
| 8 | }, |
| 9 | "default_value": { "$ref": "#/definitions/default_value" }, |
| 10 | "maxlength": { "$ref": "#/definitions/maxlength" }, |
| 11 | "rows": { "$ref": "#/definitions/rows" }, |
| 12 | "placeholder": { "$ref": "#/definitions/placeholder" }, |
| 13 | "new_lines": { "$ref": "#/definitions/new_lines" } |
| 14 | } |
| 15 | } |
| 16 |