loredata 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -21
- package/data/avengers/addresses.json +27 -0
- package/data/avengers/characters.json +178 -0
- package/data/avengers/meta.json +13 -0
- package/data/better-call-saul/addresses.json +37 -0
- package/data/better-call-saul/characters.json +156 -0
- package/data/better-call-saul/meta.json +13 -0
- package/data/big-bang-theory/addresses.json +31 -0
- package/data/big-bang-theory/characters.json +121 -0
- package/data/big-bang-theory/meta.json +13 -0
- package/data/breaking-bad/characters.json +49 -13
- package/data/breaking-bad/meta.json +10 -1
- package/data/fast-and-furious/characters.json +39 -13
- package/data/fast-and-furious/meta.json +15 -1
- package/data/friends/characters.json +138 -22
- package/data/friends/meta.json +13 -1
- package/data/game-of-thrones/characters.json +61 -16
- package/data/game-of-thrones/meta.json +10 -1
- package/data/guardians-of-the-galaxy/addresses.json +17 -0
- package/data/guardians-of-the-galaxy/characters.json +124 -0
- package/data/guardians-of-the-galaxy/meta.json +13 -0
- package/data/harry-potter/characters.json +37 -7
- package/data/harry-potter/meta.json +10 -1
- package/data/house-md/characters.json +79 -25
- package/data/house-md/meta.json +13 -1
- package/data/lost/characters.json +144 -36
- package/data/lost/meta.json +13 -1
- package/data/matrix/characters.json +133 -34
- package/data/matrix/meta.json +18 -1
- package/data/peaky-blinders/characters.json +44 -11
- package/data/peaky-blinders/meta.json +13 -1
- package/data/prison-break/addresses.json +24 -0
- package/data/prison-break/characters.json +116 -0
- package/data/prison-break/meta.json +13 -0
- package/data/sherlock/characters.json +116 -27
- package/data/sherlock/meta.json +13 -1
- package/data/simpsons/addresses.json +21 -0
- package/data/simpsons/characters.json +219 -0
- package/data/simpsons/meta.json +13 -0
- package/data/sopranos/addresses.json +37 -0
- package/data/sopranos/characters.json +184 -0
- package/data/sopranos/meta.json +13 -0
- package/data/south-park/addresses.json +31 -0
- package/data/south-park/characters.json +230 -0
- package/data/south-park/meta.json +13 -0
- package/data/spider-man/addresses.json +31 -0
- package/data/spider-man/characters.json +134 -0
- package/data/spider-man/meta.json +13 -0
- package/data/star-wars/addresses.json +19 -0
- package/data/star-wars/characters.json +153 -0
- package/data/star-wars/meta.json +13 -0
- package/data/supernatural/addresses.json +25 -0
- package/data/supernatural/characters.json +113 -0
- package/data/supernatural/meta.json +13 -0
- package/data/the-office/characters.json +84 -29
- package/data/the-office/meta.json +10 -1
- package/data/the-walking-dead/addresses.json +25 -0
- package/data/the-walking-dead/characters.json +114 -0
- package/data/the-walking-dead/meta.json +13 -0
- package/data/westworld/addresses.json +19 -0
- package/data/westworld/characters.json +108 -0
- package/data/westworld/meta.json +13 -0
- package/data/x-men/addresses.json +24 -0
- package/data/x-men/characters.json +158 -0
- package/data/x-men/meta.json +18 -0
- package/dist/browser.cjs +114 -69
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.d.cts +7 -3
- package/dist/browser.d.ts +7 -3
- package/dist/browser.js +110 -69
- package/dist/browser.js.map +1 -1
- package/dist/cli/cli.cjs +131 -70
- package/dist/cli/cli.cjs.map +1 -1
- package/dist/cli/cli.js +132 -71
- package/dist/cli/cli.js.map +1 -1
- package/dist/index.cjs +132 -68
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -4
- package/dist/index.d.ts +15 -4
- package/dist/index.js +132 -69
- package/dist/index.js.map +1 -1
- package/dist/{universe-store-DJrm7bP7.d.cts → universe-store-CWhCn3U6.d.cts} +31 -19
- package/dist/{universe-store-DJrm7bP7.d.ts → universe-store-CWhCn3U6.d.ts} +31 -19
- package/package.json +12 -4
- package/data/breaking-bad/domains.json +0 -6
- package/data/fast-and-furious/domains.json +0 -6
- package/data/friends/domains.json +0 -6
- package/data/game-of-thrones/domains.json +0 -6
- package/data/harry-potter/domains.json +0 -6
- package/data/house-md/domains.json +0 -6
- package/data/lost/domains.json +0 -6
- package/data/matrix/domains.json +0 -6
- package/data/peaky-blinders/domains.json +0 -6
- package/data/sherlock/domains.json +0 -6
- package/data/the-office/domains.json +0 -6
|
@@ -15,7 +15,15 @@
|
|
|
15
15
|
],
|
|
16
16
|
"gender": "male",
|
|
17
17
|
"birthYear": 1980,
|
|
18
|
-
"address": {
|
|
18
|
+
"address": {
|
|
19
|
+
"street": "4 Privet Drive",
|
|
20
|
+
"city": "Little Whinging",
|
|
21
|
+
"state": "Surrey",
|
|
22
|
+
"country": "GB"
|
|
23
|
+
},
|
|
24
|
+
"symbol": "⚡",
|
|
25
|
+
"color": "#1d4ed8",
|
|
26
|
+
"emailDomains": ["hogwarts.ac.uk", "auror-office.gov.uk"]
|
|
19
27
|
},
|
|
20
28
|
{
|
|
21
29
|
"id": "hermione-granger",
|
|
@@ -32,7 +40,10 @@
|
|
|
32
40
|
"Fear of a name only increases fear of the thing itself."
|
|
33
41
|
],
|
|
34
42
|
"gender": "female",
|
|
35
|
-
"birthYear": 1979
|
|
43
|
+
"birthYear": 1979,
|
|
44
|
+
"symbol": "📚",
|
|
45
|
+
"color": "#134e4a",
|
|
46
|
+
"emailDomains": ["hogwarts.ac.uk", "ministry-magic.gov.uk"]
|
|
36
47
|
},
|
|
37
48
|
{
|
|
38
49
|
"id": "ron-weasley",
|
|
@@ -49,7 +60,10 @@
|
|
|
49
60
|
"One person can't feel all that at once, they'd explode."
|
|
50
61
|
],
|
|
51
62
|
"gender": "male",
|
|
52
|
-
"birthYear": 1980
|
|
63
|
+
"birthYear": 1980,
|
|
64
|
+
"symbol": "♟️",
|
|
65
|
+
"color": "#dc2626",
|
|
66
|
+
"emailDomains": ["hogwarts.ac.uk", "auror-office.gov.uk"]
|
|
53
67
|
},
|
|
54
68
|
{
|
|
55
69
|
"id": "albus-dumbledore",
|
|
@@ -67,7 +81,14 @@
|
|
|
67
81
|
],
|
|
68
82
|
"gender": "male",
|
|
69
83
|
"birthYear": 1881,
|
|
70
|
-
"address": {
|
|
84
|
+
"address": {
|
|
85
|
+
"street": "Hogwarts School of Witchcraft and Wizardry",
|
|
86
|
+
"city": "Scottish Highlands",
|
|
87
|
+
"country": "GB"
|
|
88
|
+
},
|
|
89
|
+
"symbol": "🌟",
|
|
90
|
+
"color": "#7f1d1d",
|
|
91
|
+
"emailDomains": ["hogwarts.ac.uk", "wizengamot.org"]
|
|
71
92
|
},
|
|
72
93
|
{
|
|
73
94
|
"id": "severus-snape",
|
|
@@ -85,7 +106,10 @@
|
|
|
85
106
|
],
|
|
86
107
|
"gender": "male",
|
|
87
108
|
"birthYear": 1960,
|
|
88
|
-
"address": {"street": "Spinner's End", "city": "Cokeworth", "country": "GB"}
|
|
109
|
+
"address": { "street": "Spinner's End", "city": "Cokeworth", "country": "GB" },
|
|
110
|
+
"symbol": "🖤",
|
|
111
|
+
"color": "#ca8a04",
|
|
112
|
+
"emailDomains": ["hogwarts.ac.uk", "spinner-end.net"]
|
|
89
113
|
},
|
|
90
114
|
{
|
|
91
115
|
"id": "draco-malfoy",
|
|
@@ -103,7 +127,10 @@
|
|
|
103
127
|
],
|
|
104
128
|
"gender": "male",
|
|
105
129
|
"birthYear": 1980,
|
|
106
|
-
"address": {"street": "Malfoy Manor", "city": "Wiltshire", "country": "GB"}
|
|
130
|
+
"address": { "street": "Malfoy Manor", "city": "Wiltshire", "country": "GB" },
|
|
131
|
+
"symbol": "🐍",
|
|
132
|
+
"color": "#16a34a",
|
|
133
|
+
"emailDomains": ["malfoy-manor.com", "ministry-magic.gov.uk"]
|
|
107
134
|
},
|
|
108
135
|
{
|
|
109
136
|
"id": "luna-lovegood",
|
|
@@ -120,6 +147,9 @@
|
|
|
120
147
|
"The most important thing about Nargles is that they're quite hard to see."
|
|
121
148
|
],
|
|
122
149
|
"gender": "female",
|
|
123
|
-
"birthYear": 1981
|
|
150
|
+
"birthYear": 1981,
|
|
151
|
+
"symbol": "🌙",
|
|
152
|
+
"color": "#083344",
|
|
153
|
+
"emailDomains": ["quibbler.net", "magical-creatures.org"]
|
|
124
154
|
}
|
|
125
155
|
]
|
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "harry-potter",
|
|
3
|
-
"name": "Harry Potter"
|
|
3
|
+
"name": "Harry Potter",
|
|
4
|
+
"genre": ["fantasy", "adventure"],
|
|
5
|
+
"description": "A young wizard discovers his place in the magical world and fights the dark lord who killed his parents.",
|
|
6
|
+
"tmdbId": 671,
|
|
7
|
+
"mediaType": "movie",
|
|
8
|
+
"year": 2001,
|
|
9
|
+
"rating": 7.9,
|
|
10
|
+
"networks": ["Warner Bros. Pictures", "Heyday Films", "1492 Pictures"],
|
|
11
|
+
"posterPath": "/wuMc08IPKEatf9rnMNXvIDxqP4W.jpg",
|
|
12
|
+
"backdropPath": "/1XAC6RPT01UX9EQGy2JVn5c8pgy.jpg"
|
|
4
13
|
}
|
|
@@ -3,8 +3,14 @@
|
|
|
3
3
|
"id": "gregory-house",
|
|
4
4
|
"firstName": "Gregory",
|
|
5
5
|
"lastName": "House",
|
|
6
|
-
"usernames": [
|
|
7
|
-
|
|
6
|
+
"usernames": [
|
|
7
|
+
"everybody_lies",
|
|
8
|
+
"vicodin_md",
|
|
9
|
+
"cane_and_able",
|
|
10
|
+
"diagnostics_genius",
|
|
11
|
+
"not_lupus"
|
|
12
|
+
],
|
|
13
|
+
"profession": "Diagnostician",
|
|
8
14
|
"interests": ["medicine", "piano", "motorcycle", "puzzles", "vicodin"],
|
|
9
15
|
"quotes": [
|
|
10
16
|
"Everybody lies.",
|
|
@@ -18,14 +24,22 @@
|
|
|
18
24
|
"Solving puzzles. Saving lives is just collateral damage.",
|
|
19
25
|
"If the wonder's gone when the truth is known, there never was any wonder."
|
|
20
26
|
],
|
|
21
|
-
"gender": "male"
|
|
27
|
+
"gender": "male",
|
|
28
|
+
"symbol": "🦯",
|
|
29
|
+
"color": "#134e4a",
|
|
30
|
+
"emailDomains": ["ppth.edu", "diagnostics-ppth.net"]
|
|
22
31
|
},
|
|
23
32
|
{
|
|
24
33
|
"id": "james-wilson",
|
|
25
34
|
"firstName": "James",
|
|
26
35
|
"lastName": "Wilson",
|
|
27
|
-
"usernames": [
|
|
28
|
-
|
|
36
|
+
"usernames": [
|
|
37
|
+
"best_friend_of_house",
|
|
38
|
+
"oncology_wilson",
|
|
39
|
+
"enabler_in_chief",
|
|
40
|
+
"three_divorces_wilson"
|
|
41
|
+
],
|
|
42
|
+
"profession": "Oncologist",
|
|
29
43
|
"interests": ["oncology", "friendship", "cooking", "relationships"],
|
|
30
44
|
"quotes": [
|
|
31
45
|
"You don't like yourself. But you do admire yourself. It's all you've got so you cling to it. You're so afraid if you change, you'll lose what makes you special. Being miserable doesn't make you better than anybody else, House. It just makes you miserable.",
|
|
@@ -38,7 +52,10 @@
|
|
|
38
52
|
"Dying's easy. Living's hard!",
|
|
39
53
|
"Because you're not ordinary, House. You're way out there on the fringe somewhere. I'm your best friend, and half the time I don't understand you. You're alone. Been alone your whole life."
|
|
40
54
|
],
|
|
41
|
-
"gender": "male"
|
|
55
|
+
"gender": "male",
|
|
56
|
+
"symbol": "🎗️",
|
|
57
|
+
"color": "#166534",
|
|
58
|
+
"emailDomains": ["ppth.edu", "oncology-ppth.net"]
|
|
42
59
|
},
|
|
43
60
|
{
|
|
44
61
|
"id": "lisa-cuddy",
|
|
@@ -57,14 +74,17 @@
|
|
|
57
74
|
"An egomaniacal, narcissistic pain in the ass — same as before you left.",
|
|
58
75
|
"You are waking her up so that you could both say goodbye to each other. She would want it."
|
|
59
76
|
],
|
|
60
|
-
"gender": "female"
|
|
77
|
+
"gender": "female",
|
|
78
|
+
"symbol": "🏥",
|
|
79
|
+
"color": "#3b1f0a",
|
|
80
|
+
"emailDomains": ["ppth.edu", "medical-admin.net"]
|
|
61
81
|
},
|
|
62
82
|
{
|
|
63
83
|
"id": "eric-foreman",
|
|
64
84
|
"firstName": "Eric",
|
|
65
85
|
"lastName": "Foreman",
|
|
66
86
|
"usernames": ["foreman_neurologist", "not_a_car_thief", "dean_foreman", "team_foreman"],
|
|
67
|
-
"profession": "
|
|
87
|
+
"profession": "Neurologist",
|
|
68
88
|
"interests": ["neurology", "medicine", "ethics", "career advancement"],
|
|
69
89
|
"quotes": [
|
|
70
90
|
"Isn't treating patients why we became doctors?",
|
|
@@ -76,14 +96,17 @@
|
|
|
76
96
|
"Every slavemaster thought they were doing the black man a favour.",
|
|
77
97
|
"I think you got her in because of your usual messiah complex. I think you messed with the appointment schedule because of your I-like-to-have-sex complex."
|
|
78
98
|
],
|
|
79
|
-
"gender": "male"
|
|
99
|
+
"gender": "male",
|
|
100
|
+
"symbol": "🧠",
|
|
101
|
+
"color": "#083344",
|
|
102
|
+
"emailDomains": ["ppth.edu", "neuro-ppth.net"]
|
|
80
103
|
},
|
|
81
104
|
{
|
|
82
105
|
"id": "robert-chase",
|
|
83
106
|
"firstName": "Robert",
|
|
84
107
|
"lastName": "Chase",
|
|
85
108
|
"usernames": ["pretty_boy_chase", "aussie_doctor", "not_british", "dr_chase_ppth"],
|
|
86
|
-
"profession": "
|
|
109
|
+
"profession": "Intensivist",
|
|
87
110
|
"interests": ["surgery", "intensive care", "surfing", "religion"],
|
|
88
111
|
"quotes": [
|
|
89
112
|
"They tend to keep quiet on account of them not having any mouths.",
|
|
@@ -95,14 +118,22 @@
|
|
|
95
118
|
"If people told nothing but the truth, the world would probably burn down overnight.",
|
|
96
119
|
"This is why we left House's team. To avoid this constant flood of pure craziness."
|
|
97
120
|
],
|
|
98
|
-
"gender": "male"
|
|
121
|
+
"gender": "male",
|
|
122
|
+
"symbol": "🏄",
|
|
123
|
+
"color": "#4c1d95",
|
|
124
|
+
"emailDomains": ["ppth.edu", "ppth-icu.net"]
|
|
99
125
|
},
|
|
100
126
|
{
|
|
101
127
|
"id": "allison-cameron",
|
|
102
128
|
"firstName": "Allison",
|
|
103
129
|
"lastName": "Cameron",
|
|
104
|
-
"usernames": [
|
|
105
|
-
|
|
130
|
+
"usernames": [
|
|
131
|
+
"dr_cameron_er",
|
|
132
|
+
"always_caring_cameron",
|
|
133
|
+
"cameron_immunology",
|
|
134
|
+
"mercy_and_reason"
|
|
135
|
+
],
|
|
136
|
+
"profession": "Emergency medicine physician",
|
|
106
137
|
"interests": ["medicine", "ethics", "immunology", "human rights"],
|
|
107
138
|
"quotes": [
|
|
108
139
|
"He cured you. You didn't cure him.",
|
|
@@ -114,14 +145,17 @@
|
|
|
114
145
|
"It's why I left House. You got fired.",
|
|
115
146
|
"In ER we like to actually resuscitate dying people, not just let them flop around."
|
|
116
147
|
],
|
|
117
|
-
"gender": "female"
|
|
148
|
+
"gender": "female",
|
|
149
|
+
"symbol": "❤️",
|
|
150
|
+
"color": "#4a1942",
|
|
151
|
+
"emailDomains": ["ppth.edu", "er-chicago.net"]
|
|
118
152
|
},
|
|
119
153
|
{
|
|
120
154
|
"id": "chris-taub",
|
|
121
155
|
"firstName": "Chris",
|
|
122
156
|
"lastName": "Taub",
|
|
123
157
|
"usernames": ["taub_plastics", "nose_job_taub", "dr_taub_ppth", "taub_survivor"],
|
|
124
|
-
"profession": "
|
|
158
|
+
"profession": "Physician",
|
|
125
159
|
"interests": ["medicine", "plastic surgery", "family", "poker"],
|
|
126
160
|
"quotes": [
|
|
127
161
|
"We treat her like a sixty-year-old Asian man, too?",
|
|
@@ -133,14 +167,17 @@
|
|
|
133
167
|
"I'll bring it up at the next world domination subcommittee meeting.",
|
|
134
168
|
"Why me?"
|
|
135
169
|
],
|
|
136
|
-
"gender": "male"
|
|
170
|
+
"gender": "male",
|
|
171
|
+
"symbol": "👃",
|
|
172
|
+
"color": "#dc2626",
|
|
173
|
+
"emailDomains": ["ppth.edu"]
|
|
137
174
|
},
|
|
138
175
|
{
|
|
139
176
|
"id": "remy-hadley",
|
|
140
177
|
"firstName": "Remy",
|
|
141
178
|
"lastName": "Hadley",
|
|
142
179
|
"usernames": ["thirteen_hadley", "huntingtons_thirteen", "dr_thirteen", "remy_hadley_md"],
|
|
143
|
-
"profession": "
|
|
180
|
+
"profession": "Internist",
|
|
144
181
|
"interests": ["medicine", "clinical trials", "Huntington's disease", "neurology"],
|
|
145
182
|
"quotes": [
|
|
146
183
|
"No one can describe themselves in ten words. Why would we wanna hear anyone else do it?",
|
|
@@ -152,14 +189,17 @@
|
|
|
152
189
|
"Patient has spinal muscular atrophy. It's genetic, incurable. This is not a diagnostic mystery.",
|
|
153
190
|
"We could save this patient but all you care about is getting your answer!"
|
|
154
191
|
],
|
|
155
|
-
"gender": "female"
|
|
192
|
+
"gender": "female",
|
|
193
|
+
"symbol": "🎲",
|
|
194
|
+
"color": "#4c1d95",
|
|
195
|
+
"emailDomains": ["ppth.edu", "thirteen-mail.net"]
|
|
156
196
|
},
|
|
157
197
|
{
|
|
158
198
|
"id": "lawrence-kutner",
|
|
159
199
|
"firstName": "Lawrence",
|
|
160
200
|
"lastName": "Kutner",
|
|
161
201
|
"usernames": ["kutner_md", "foster_kid_kutner", "kutner_diagnostics", "excitable_kutner"],
|
|
162
|
-
"profession": "
|
|
202
|
+
"profession": "Sports medicine physician",
|
|
163
203
|
"interests": ["medicine", "sports medicine", "pranks", "pop culture"],
|
|
164
204
|
"quotes": [
|
|
165
205
|
"Belonging's overrated. I was adopted by a white family when I was nine. I like being different the view's better from the outside looking in.",
|
|
@@ -171,14 +211,22 @@
|
|
|
171
211
|
"You slept with Foreman? Sorry, you were busy.",
|
|
172
212
|
"Yeah he'd never do that. Oh wait — he already did last year!"
|
|
173
213
|
],
|
|
174
|
-
"gender": "male"
|
|
214
|
+
"gender": "male",
|
|
215
|
+
"symbol": "🏃",
|
|
216
|
+
"color": "#4a1942",
|
|
217
|
+
"emailDomains": ["ppth.edu"]
|
|
175
218
|
},
|
|
176
219
|
{
|
|
177
220
|
"id": "jessica-adams",
|
|
178
221
|
"firstName": "Jessica",
|
|
179
222
|
"lastName": "Adams",
|
|
180
|
-
"usernames": [
|
|
181
|
-
|
|
223
|
+
"usernames": [
|
|
224
|
+
"dr_adams_ppth",
|
|
225
|
+
"formerly_incarcerated_md",
|
|
226
|
+
"adams_diagnostics",
|
|
227
|
+
"jail_doc_adams"
|
|
228
|
+
],
|
|
229
|
+
"profession": "Diagnostician",
|
|
182
230
|
"interests": ["medicine", "ethics", "charity work", "volunteering"],
|
|
183
231
|
"quotes": [
|
|
184
232
|
"I checked your file. You didn't have a bad lawyer. You had no lawyer. You took the first deal they offered because you wanted to punish yourself.",
|
|
@@ -190,14 +238,17 @@
|
|
|
190
238
|
"Thad Barton? We only help rich white guys?",
|
|
191
239
|
"I could do $5,000. If you double your clinic hours."
|
|
192
240
|
],
|
|
193
|
-
"gender": "female"
|
|
241
|
+
"gender": "female",
|
|
242
|
+
"symbol": "⚕️",
|
|
243
|
+
"color": "#4a1942",
|
|
244
|
+
"emailDomains": ["ppth.edu"]
|
|
194
245
|
},
|
|
195
246
|
{
|
|
196
247
|
"id": "chi-park",
|
|
197
248
|
"firstName": "Chi",
|
|
198
249
|
"lastName": "Park",
|
|
199
250
|
"usernames": ["dr_park_ppth", "punched_the_boss", "park_diagnostics", "dr_chi_park"],
|
|
200
|
-
"profession": "
|
|
251
|
+
"profession": "Neurologist",
|
|
201
252
|
"interests": ["medicine", "neurology", "family", "self-defense"],
|
|
202
253
|
"quotes": [
|
|
203
254
|
"You do know I punched the last person that pissed me off?",
|
|
@@ -208,6 +259,9 @@
|
|
|
208
259
|
"If you were me, what would you do?",
|
|
209
260
|
"Would it hurt to do both?"
|
|
210
261
|
],
|
|
211
|
-
"gender": "female"
|
|
262
|
+
"gender": "female",
|
|
263
|
+
"symbol": "👊",
|
|
264
|
+
"color": "#083344",
|
|
265
|
+
"emailDomains": ["ppth.edu", "neuro-ppth.net"]
|
|
212
266
|
}
|
|
213
267
|
]
|
package/data/house-md/meta.json
CHANGED
|
@@ -1 +1,13 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"id": "house-md",
|
|
3
|
+
"name": "House M.D.",
|
|
4
|
+
"genre": ["drama", "mystery", "medical"],
|
|
5
|
+
"description": "A misanthropic diagnostic genius leads a team of doctors solving medical mysteries no one else can crack.",
|
|
6
|
+
"tmdbId": 1408,
|
|
7
|
+
"mediaType": "tv",
|
|
8
|
+
"year": 2004,
|
|
9
|
+
"rating": 8.6,
|
|
10
|
+
"networks": ["FOX"],
|
|
11
|
+
"posterPath": "/3Cz7ySOQJmqiuTdrc6CY0r65yDI.jpg",
|
|
12
|
+
"backdropPath": "/r0Q6eeN9L1ORL9QsV0Sg8ZV3vnv.jpg"
|
|
13
|
+
}
|