-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_data.json
166 lines (166 loc) · 5.31 KB
/
sample_data.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"abstractTasks": [
{
"description": "If a card has a 3 on one side then it has a S on the other side.",
"firstCard": {
"card": "S",
"isFlipped": false
},
"secondCard": {
"card": "Q",
"isFlipped": true
},
"thirdCard": {
"card": "3",
"isFlipped": true
},
"fourthCard": {
"card": "7",
"isFlipped": false
},
"story": "Each card has a number on one side and a letter on the other side."
},
{
"description": "If a card has a S on one side then it has a 3 on the other side.",
"firstCard": {
"card": "S",
"isFlipped": true
},
"secondCard": {
"card": "Q",
"isFlipped": false
},
"thirdCard": {
"card": "3",
"isFlipped": false
},
"fourthCard": {
"card": "7",
"isFlipped": true
},
"story": "Each card has a number on one side and a letter on the other side."
},
{
"description": "If there is a vowel on one side then there is an even number on the other side.",
"firstCard": {
"card": "E",
"isFlipped": true
},
"secondCard": {
"card": "K",
"isFlipped": false
},
"thirdCard": {
"card": "4",
"isFlipped": false
},
"fourthCard": {
"card": "7",
"isFlipped": true
},
"story": "Each card has a number on one side and a letter on the other side."
},
{
"description": "If a card is red on one side then the other side shows a consonant.",
"firstCard": {
"card": "S",
"isFlipped": false
},
"secondCard": {
"card": "green",
"isFlipped": false
},
"thirdCard": {
"card": "darkred",
"isFlipped": true
},
"fourthCard": {
"card": "A",
"isFlipped": true
},
"story": "Each card has a colour on one side and a letter on the other side."
}
],
"concreteTasks": [
{
"description": "If a person drinks an alcoholic drink, then they must be over the age of 21 years old.",
"firstCard": {
"card": "beer-card",
"isFlipped": true
},
"secondCard": {
"card": "coffee-card",
"isFlipped": false
},
"thirdCard": {
"card": "23歳",
"isFlipped": false
},
"fourthCard": {
"card": "15歳",
"isFlipped": true
},
"story": "You are a person working in a disco. The numbers on the cards correspond to a person's age. Each card has an age on one side and a drink on the other side."
},
{
"description": "If a person drives a car, then they must be over the age of 18 years old.",
"firstCard": {
"card": "17歳",
"isFlipped": true
},
"secondCard": {
"card": "car-card",
"isFlipped": true
},
"thirdCard": {
"card": "23歳",
"isFlipped": false
},
"fourthCard": {
"card": "bicycle-card",
"isFlipped": false
},
"story": "You are a policeman patrolling on the street. The numbers on the cards correspond to an age. Each card has a vehicle on one side and an age on the other side"
},
{
"description": "If a person owns a TV, she has to be other than 18 years.",
"firstCard": {
"card": "PC-card",
"isFlipped": false
},
"secondCard": {
"card": "TV-card",
"isFlipped": true
},
"thirdCard": {
"card": "42歳",
"isFlipped": false
},
"fourthCard": {
"card": "11歳",
"isFlipped": true
},
"story": "Each card has an electrical device on one side and an age on the other side."
},
{
"description": "If a person drinks an alcoholic drink, then they must be over the age of 21 years old.",
"firstCard": {
"card": "coffee-card",
"isFlipped": false
},
"secondCard": {
"card": "10歳",
"isFlipped": true
},
"thirdCard": {
"card": "42歳",
"isFlipped": false
},
"fourthCard": {
"card": "beer-card",
"isFlipped": true
},
"story": "You are a policeman checking people in a bar."
}
]
}