-
Notifications
You must be signed in to change notification settings - Fork 31
/
star-wars.json
255 lines (249 loc) · 11.3 KB
/
star-wars.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
[
{ "@type" : "@context",
"@base" : "terminusdb:///star-wars/",
"@schema" : "terminusdb:///schema/star-wars#"
},
{ "@type" : "Class",
"@id" : "People",
"@metadata" : { "render_as" : { "desc" : "markdown" },
"order_by" : [
"label",
"mass",
"desc",
"height",
"weight",
"hair_colors",
"skin_colors",
"eye_color",
"gender",
"birth_year",
"species",
"homeworld",
"film",
"vehicle",
"starship",
"created",
"edited",
"url"
]
},
"height" : { "@type" : "Optional", "@class" :"xsd:string"},
"mass" : { "@type" : "Optional", "@class" :"xsd:string"},
"hair_colors" : {"@type" : "Optional", "@class" : "xsd:string"},
"skin_colors" : {"@type" : "Optional", "@class" : "xsd:string"},
"eye_color" : { "@type" : "Optional", "@class" :"xsd:string"},
"birth_year" : {"@type" : "Optional", "@class" : "xsd:string"},
"gender" : {"@type" : "Optional", "@class" : "xsd:string"},
"homeworld" : "Planet",
"desc" : {"@type" : "Set", "@class" : "xsd:string"},
"film" : { "@type" : "Set", "@class" : "Film" },
"species" : {"@type" : "Optional", "@class" : "Species"},
"starship" : {"@type" : "Set", "@class" : "Starship"},
"vehicle" : {"@type" : "Set", "@class" : "Vehicle"},
"created" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"edited" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"url" : {"@type" : "Optional", "@class" : "xsd:string"},
"label" : { "@type" : "Optional", "@class" : "xsd:string"}
},
{ "@type" : "Class",
"@id" : "Film",
"@metadata" : { "render_as" : { "desc" : "markdown",
"opening_crawl" : "markdown"},
"order_by" : [
"label",
"desc",
"opening_crawl",
"director",
"producer",
"release_date",
"episode_id",
"character",
"species",
"planet",
"film",
"vehicle",
"starship",
"created",
"edited",
"url"
]
},
"episode_id" : "xsd:nonNegativeInteger",
"opening_crawl" : "xsd:string",
"director" : "xsd:string",
"producer" : "xsd:string",
"vehicle" : {"@type" : "Set", "@class" : "Vehicle"},
"species" : {"@type" : "Set", "@class" : "Species"},
"starship" : {"@type" : "Set", "@class" : "Starship"},
"character" : { "@type" : "Set", "@class" : "People" },
"planet" : { "@type" : "Set", "@class" : "Planet" },
"url" : {"@type" : "Optional", "@class" : "xsd:string"},
"desc" : {"@type" : "Set", "@class" : "xsd:string"},
"release_date" : {"@type" : "Optional", "@class" : "xsd:date"},
"created" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"edited" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"label" : { "@type" : "Optional", "@class" : "xsd:string"}
},
{ "@type" : "Class",
"@id" : "Planet",
"@metadata" : { "render_as" : { "desc" : "markdown" },
"order_by" : [
"label",
"desc",
"rotation_period",
"orbital_period",
"diameter",
"climate",
"terrain",
"surface_water",
"population",
"gravity",
"resident",
"film",
"created",
"edited",
"url"
]
},
"url" : {"@type" : "Optional", "@class" : "xsd:string"},
"rotation_period" : {"@type" : "Optional", "@class" : "xsd:integer"},
"orbital_period" : {"@type" : "Optional", "@class" : "xsd:integer"},
"diameter" : {"@type" : "Optional", "@class" : "xsd:integer"},
"climate" : {"@type" : "Optional", "@class" : "xsd:string"},
"terrain" : {"@type" : "Optional", "@class" : "xsd:string"},
"surface_water" : {"@type" : "Optional", "@class" : "xsd:string"},
"population" : {"@type" : "Optional", "@class" : "xsd:string"},
"gravity" : {"@type" : "Optional", "@class" : "xsd:string"},
"resident" : {"@type" : "Set", "@class" : "People"},
"film" : {"@type" : "Set", "@class" : "Film"},
"created" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"edited" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"desc" : {"@type" : "Set", "@class" : "xsd:string"},
"label" : { "@type" : "Optional", "@class" : "xsd:string"}
},
{ "@type" : "Class",
"@id" : "Species",
"@metadata" : { "render_as" : { "desc" : "markdown" },
"order_by" : [
"label",
"desc",
"classification",
"designation",
"average_height",
"skin_colors",
"eye_colors",
"hair_colors",
"average_lifespan",
"language",
"homeworld",
"people",
"film",
"created",
"edited",
"url"
]
},
"label" : { "@type" : "Optional", "@class" : "xsd:string"},
"classification" : { "@type" : "Optional", "@class" : "xsd:string"},
"designation" : "xsd:string",
"average_height" : { "@type" : "Optional", "@class" : "xsd:integer"},
"skin_colors" : { "@type" : "Optional", "@class" : "xsd:string"},
"eye_colors" : { "@type" : "Optional", "@class" : "xsd:string"},
"hair_colors" : { "@type" : "Optional", "@class" : "xsd:string"},
"average_lifespan" : {"@type" : "Optional", "@class" : "xsd:integer"},
"language" : { "@type" : "Optional", "@class" : "xsd:string"},
"homeworld" : { "@type" : "Optional", "@class" : "Planet"},
"people" : {"@type" : "Set", "@class" : "People"},
"film" : {"@type" : "Set", "@class" : "Film"},
"created" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"edited" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"desc" : {"@type" : "Set", "@class" : "xsd:string"},
"url" : {"@type" : "Optional", "@class" : "xsd:string"}
},
{ "@type" : "Class",
"@id" : "Starship",
"@metadata" : { "render_as" : { "desc" : "markdown" },
"order_by" : [
"label",
"desc",
"model",
"manufacturer",
"cost_in_credits",
"length",
"max_atmosphering_speed",
"crew",
"passengers",
"cargo_capacity",
"consumables",
"hyperdrive_rating",
"MGLT",
"starship_class",
"pilot",
"film",
"created",
"edited",
"url"
]
},
"label" : { "@type" : "Optional", "@class" : "xsd:string"},
"model" : "xsd:string",
"manufacturer" : "xsd:string",
"cost_in_credits" : { "@type" : "Optional", "@class" : "xsd:integer"},
"length" : { "@type" : "Optional", "@class" : "xsd:decimal"},
"max_atmosphering_speed" : { "@type" : "Optional", "@class" : "xsd:integer"},
"crew" : { "@type" : "Optional", "@class" : "xsd:decimal"},
"passengers" : { "@type" : "Optional", "@class" : "xsd:decimal"},
"cargo_capacity" : { "@type" : "Optional", "@class" : "xsd:integer"},
"consumables" : { "@type" : "Optional", "@class" :"xsd:string"},
"hyperdrive_rating" : { "@type" : "Optional", "@class" : "xsd:decimal"},
"MGLT" : {"@type" : "Optional", "@class" : "xsd:string"},
"starship_class" : "xsd:string",
"desc" : {"@type" : "Set", "@class" : "xsd:string"},
"pilot" : {"@type" : "Set", "@class" : "People"},
"film" : {"@type" : "Set", "@class" : "Film"},
"created" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"edited" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"url" : {"@type" : "Optional", "@class" : "xsd:string"}
},
{ "@type" : "Class",
"@id" : "Vehicle",
"@metadata" : { "render_as" : { "desc" : "markdown" },
"order_by" : [
"label",
"desc",
"model",
"manufacturer",
"cost_in_credits",
"length",
"max_atmosphering_speed",
"crew",
"passengers",
"cargo_capacity",
"consumables",
"vehicle_class",
"pilot",
"film",
"created",
"edited",
"url"
]
},
"label" : { "@type" : "Optional", "@class" : "xsd:string"},
"model" : { "@type" : "Optional", "@class" : "xsd:string"},
"manufacturer" : { "@type" : "Optional", "@class" : "xsd:string"},
"cost_in_credits" : { "@type" : "Optional", "@class" : "xsd:integer"},
"length" : { "@type" : "Optional", "@class" : "xsd:decimal"},
"max_atmosphering_speed" : { "@type" : "Optional", "@class" : "xsd:integer"},
"crew" : {"@type" : "Optional", "@class" : "xsd:integer"},
"passengers" : {"@type" : "Optional", "@class" : "xsd:integer"},
"cargo_capacity" : {"@type" : "Optional", "@class" : "xsd:decimal"},
"consumables" : {"@type" : "Optional", "@class" : "xsd:string"},
"desc" : {"@type" : "Set", "@class" : "xsd:string"},
"vehicle_class" : { "@type" : "Optional", "@class" : "xsd:string" },
"film" : {"@type" : "Set", "@class" : "Film"},
"created" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"edited" : {"@type" : "Optional", "@class" : "xsd:dateTime"},
"url" : {"@type" : "Optional", "@class" : "xsd:string"},
"pilot" : {"@type" : "Set", "@class" : "People"}
}
]