-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNamingGameSchema.json
127 lines (126 loc) · 4.76 KB
/
NamingGameSchema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
mySchema = {
"title":"Naming Game",
"description":"This form allows you to create and edit your own Naming Game.",
"type":"object",
"properties": {
"Name": {
"type":"string",
"description": "Enter a brief title for your game.",
"minItems": 1,
"title": "Name"
},
"Description": {
"type": "string",
"description": "Enter a brief description of your game.",
"title": "Description"
},
"Question": {
"type":"array",
"description": "Question prompts may be text to speak or a sound to play.",
"title": "Questions",
"minItems": 1,
"items" : {
"type" : "string",
"description" : "Enter a question.",
"format": "audio"
}
},
"Between_Rounds": {
"type": "array",
"description": "Things to say between rounds.",
"title":"Between Rounds",
"minItems": 1,
"default": [ "Now try these." ],
"items": {
"type":"string",
"description" : "Enter a sentence to put between rounds."
}
},
"Choices_per_round": {
"type": "integer",
"maximum": 4,
"minimum": 1,
"default": 4,
"description": "Number of things to pick each round.",
"title": "Choices Per Round"
},
"Pair_answers_with_prompts": {
"type": "boolean",
"description": "Should answer choices be paried with prompts?",
"title": "Pair Answers With Prompts"
},
"Repeat_rounds": {
"type":"boolean",
"description": "Should rounds be repeated?",
"title": "Repeat Rounds"
},
"Things": {
"type": "array",
"description": "The game content. The 'things' that will be named.",
"title": "Things",
"format": "grid",
"items": {
"type": "object",
"description": "An individual thing.",
"title":"A Thing",
"properties": {
"Name": {
"type":"string",
"description": "The name of the thing.",
"title":"Name"
},
"Prompt": {
"type":"array",
"description":"Prompts",
"title":"Prompts",
"items": {
"type":"string",
"description":"Enter a name our a sound",
"format": "audio"
}
},
"Answer": {
"type":"array",
"description":"Specify the answer associated with this thing. The default is the same as the Name but you could play a sound here instead.",
"title":"Answers",
"items": {
"type" : "string",
"description" : "An answer",
"title":"Answer",
"format": "audio"
}
},
"Hint": {
"type": "array",
"description": "A list of hints to help player if they miss the question the first time.",
"title": "Hints",
"items": {
"type":"string",
"description":"A hint. It Can be sound url or text.",
"title":"Hint",
"format": "audio"
}
},
"Picture": {
"type":"array",
"description":"A list of picture data.",
"title": "Pictures",
"items": {
"type": "object",
"description":"An image url, along with its height and width.",
"title":"Picture",
"properties": {
"url":{
"type":"string",
"description":"Image to display",
"title":"Picture",
"format": "imageMedia"
}
}
}
}
}
}
}
}
};