|
1 | 1 | { |
2 | | - "name": { "label": "Model Name", "type": "input", "required": true }, |
3 | | - "description": { |
4 | | - "label": "Model Description", |
| 2 | + "name": { |
| 3 | + "label": "The Name of the Thing", |
| 4 | + "type": "input", |
| 5 | + "required": true |
| 6 | + }, |
| 7 | + "nickname": { |
| 8 | + "label": "The Nickname of the Thing", |
5 | 9 | "type": "input", |
6 | 10 | "required": false |
7 | 11 | }, |
8 | | - "id": { |
9 | | - "label": "Ersilia ID", |
| 12 | + "color": { |
| 13 | + "label": "The Color of the Thing", |
10 | 14 | "type": "dropdown", |
11 | 15 | "required": true, |
12 | 16 | "multiple": false, |
13 | | - "options": ["abc123", "def456"] |
| 17 | + "options": [ |
| 18 | + "blue", |
| 19 | + "black", |
| 20 | + "green", |
| 21 | + "orange", |
| 22 | + "purple", |
| 23 | + "red", |
| 24 | + "white", |
| 25 | + "yellow" |
| 26 | + ] |
| 27 | + }, |
| 28 | + "shape": { |
| 29 | + "label": "The Shape of the Thing", |
| 30 | + "type": "dropdown", |
| 31 | + "required": false, |
| 32 | + "multiple": false, |
| 33 | + "options": ["circle", "square", "triangle"] |
14 | 34 | }, |
15 | | - "publication": { |
16 | | - "label": "Publication", |
| 35 | + "sounds": { |
| 36 | + "label": "The Sounds of the Thing", |
| 37 | + "type": "dropdown", |
| 38 | + "required": true, |
| 39 | + "multiple": true, |
| 40 | + "options": ["do", "re", "mi", "fa", "so", "la", "ti"] |
| 41 | + }, |
| 42 | + "topics": { |
| 43 | + "label": "The Topics About the Thing", |
| 44 | + "type": "dropdown", |
| 45 | + "required": false, |
| 46 | + "multiple": true, |
| 47 | + "options": ["cool", "fun", "interesting", "neat"] |
| 48 | + }, |
| 49 | + "description": { |
| 50 | + "label": "The Description of the Thing", |
| 51 | + "type": "textarea", |
| 52 | + "required": true |
| 53 | + }, |
| 54 | + "notes": { |
| 55 | + "label": "The Notes About the Thing", |
17 | 56 | "type": "textarea", |
18 | 57 | "required": false |
19 | 58 | }, |
20 | 59 | "code": { |
21 | | - "label": "Code", |
22 | | - "type": "dropdown", |
23 | | - "required": true, |
24 | | - "multiple": false, |
25 | | - "options": ["123abc", "456def"] |
| 60 | + "label": "The Code of the Thing", |
| 61 | + "type": "textarea", |
| 62 | + "required": true |
| 63 | + }, |
| 64 | + "code-string": { |
| 65 | + "label": "The String Method of the Code of the Thing", |
| 66 | + "type": "textarea", |
| 67 | + "required": false |
| 68 | + }, |
| 69 | + "is-thing": { |
| 70 | + "label": "Is the Thing a Thing?", |
| 71 | + "type": "checkboxes", |
| 72 | + "required": false, |
| 73 | + "options": [ |
| 74 | + { "label": "Yes", "required": true }, |
| 75 | + { "label": "No", "required": false } |
| 76 | + ] |
| 77 | + }, |
| 78 | + "is-thing-useful": { |
| 79 | + "label": "Is the Thing Useful?", |
| 80 | + "type": "checkboxes", |
| 81 | + "required": false, |
| 82 | + "options": [ |
| 83 | + { "label": "Yes", "required": false }, |
| 84 | + { "label": "Sometimes", "required": false }, |
| 85 | + { "label": "No", "required": false } |
| 86 | + ] |
26 | 87 | }, |
27 | | - "license": { "label": "License", "type": "input", "required": true } |
| 88 | + "read-team": { "label": "Read Team", "type": "input", "required": true }, |
| 89 | + "write-team": { "label": "Write Team", "type": "input", "required": true } |
28 | 90 | } |
0 commit comments