accordion.schema.json
7 months ago
clone.schema.json
7 months ago
flexible-content.schema.json
7 months ago
group.schema.json
7 months ago
message.schema.json
7 months ago
output.schema.json
7 months ago
repeater.schema.json
7 months ago
separator.schema.json
7 months ago
tab.schema.json
7 months ago
clone.schema.json
36 lines
| 1 | { |
| 2 | "title": "SCF Clone Field Fragment", |
| 3 | "description": "Type-specific properties for clone fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "clone" ] |
| 8 | }, |
| 9 | "clone": { |
| 10 | "type": [ "string", "array" ], |
| 11 | "default": "", |
| 12 | "description": "Field keys or group keys to clone" |
| 13 | }, |
| 14 | "prefix_label": { |
| 15 | "type": "integer", |
| 16 | "default": 0, |
| 17 | "description": "Prefix cloned field labels with this field's label" |
| 18 | }, |
| 19 | "prefix_name": { |
| 20 | "type": "integer", |
| 21 | "default": 0, |
| 22 | "description": "Prefix cloned field names with this field's name" |
| 23 | }, |
| 24 | "display": { |
| 25 | "type": "string", |
| 26 | "enum": [ "group", "seamless" ], |
| 27 | "default": "seamless", |
| 28 | "description": "Display style for cloned fields" |
| 29 | }, |
| 30 | "layout": { |
| 31 | "$ref": "#/definitions/layout_display", |
| 32 | "default": "block" |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 |