-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.json
More file actions
53 lines (53 loc) · 1.41 KB
/
example.json
File metadata and controls
53 lines (53 loc) · 1.41 KB
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
{
"introduction": "I had a great day yesterday! It started when I woke up and remembered that {partier}'s birthday party was that evening.",
"conclusion": "After all that, I still got a good night of sleep afterwards. Boy, what a great day.",
"scenes": [
"{ordinal}, I went to {destination}. I saw {who} there, and {who.they} and I {event}.",
"{ordinal} I called my friend {who} and we went to {destination}. When we got there, {who.they} {event} while I {event2}.",
"{ordinal}, {who} gave me a ride to {destination}. We found a group of our friends already there, so we joined them. {who.They} {event2}, and I {event}."
],
"story": [
{
"ordinal": "First",
"destination": "the park",
"event": "practiced freethrows",
"event2": "read a book",
"who": 1
},
{
"ordinal": "Next",
"destination": "the grocery store",
"event": "bought some ice cream",
"event2": "picked out a cake",
"who": 2
},
{
"ordinal": "Finally",
"destination": "the party",
"event": "ate cake and ice cream",
"event2": "danced",
"who": 0
}
],
"characters": [
{
"name": "Caitlin",
"pronouns": "she"
},
{
"name": "Alan",
"pronouns": "he"
},
{
"name": "Andy",
"pronouns": "he"
},
{
"name": "Julia",
"pronouns": "she"
}
],
"globals": {
"partier": 3
}
}