markform 0.1.3 → 0.1.4
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 +81 -28
- package/dist/ai-sdk.d.mts +2 -2
- package/dist/ai-sdk.mjs +5 -5
- package/dist/{apply-00UmzDKL.mjs → apply-C54EMAJ1.mjs} +371 -26
- package/dist/bin.mjs +6 -6
- package/dist/{cli-D--Lel-e.mjs → cli-BhWhn6L9.mjs} +383 -87
- package/dist/cli.mjs +6 -6
- package/dist/{coreTypes-BXhhz9Iq.d.mts → coreTypes-cbNTYAcb.d.mts} +1878 -325
- package/dist/{coreTypes-Dful87E0.mjs → coreTypes-pyctKRgc.mjs} +79 -5
- package/dist/index.d.mts +142 -5
- package/dist/index.mjs +5 -5
- package/dist/session-B_stoXQn.mjs +4 -0
- package/dist/{session-Bqnwi9wp.mjs → session-uF0e6m6k.mjs} +9 -5
- package/dist/{shared-N_s1M-_K.mjs → shared-BqPnYXrn.mjs} +82 -1
- package/dist/shared-CZsyShck.mjs +3 -0
- package/dist/{src-Dm8jZ5dl.mjs → src-BNh7Cx9P.mjs} +801 -121
- package/docs/markform-apis.md +194 -0
- package/{DOCS.md → docs/markform-reference.md} +111 -50
- package/{SPEC.md → docs/markform-spec.md} +342 -91
- package/examples/celebrity-deep-research/celebrity-deep-research.form.md +196 -141
- package/examples/earnings-analysis/earnings-analysis.form.md +236 -226
- package/examples/movie-research/movie-research-basic.form.md +25 -21
- package/examples/movie-research/movie-research-deep.form.md +74 -62
- package/examples/movie-research/movie-research-minimal.form.md +25 -11
- package/examples/simple/simple-mock-filled.form.md +93 -29
- package/examples/simple/simple-skipped-filled.form.md +91 -29
- package/examples/simple/simple-with-skips.session.yaml +93 -25
- package/examples/simple/simple.form.md +74 -20
- package/examples/simple/simple.session.yaml +98 -25
- package/examples/startup-deep-research/startup-deep-research.form.md +108 -81
- package/examples/startup-research/startup-research-mock-filled.form.md +43 -43
- package/examples/startup-research/startup-research.form.md +24 -24
- package/package.json +18 -19
- package/dist/session-DdAtY2Ni.mjs +0 -4
- package/dist/shared-D7gf27Tr.mjs +0 -3
|
@@ -62,13 +62,13 @@ Many fields request tables. Use markdown table format:
|
|
|
62
62
|
|
|
63
63
|
{% field-group id="user_input" title="Subject Identification" %}
|
|
64
64
|
|
|
65
|
-
{%
|
|
65
|
+
{% field kind="string" id="celebrity_name" label="Celebrity Name" role="user" required=true minLength=2 maxLength=200 %}{% /field %}
|
|
66
66
|
|
|
67
67
|
{% instructions ref="celebrity_name" %}
|
|
68
68
|
Enter the full professional name (e.g., "Margot Robbie", "Leonardo DiCaprio", "Timothée Chalamet").
|
|
69
69
|
{% /instructions %}
|
|
70
70
|
|
|
71
|
-
{%
|
|
71
|
+
{% field kind="string" id="disambiguation" label="Disambiguation Context" role="user" maxLength=500 %}{% /field %}
|
|
72
72
|
|
|
73
73
|
{% instructions ref="disambiguation" %}
|
|
74
74
|
Optional but helpful for common names:
|
|
@@ -87,16 +87,16 @@ Foundational biographical information. Primary source: Wikipedia biography page.
|
|
|
87
87
|
Secondary sources: IMDb bio, official studio bios, agency websites.
|
|
88
88
|
{% /description %}
|
|
89
89
|
|
|
90
|
-
{%
|
|
90
|
+
{% field kind="string" id="full_legal_name" label="Full Legal Name" %}{% /field %}
|
|
91
91
|
|
|
92
92
|
{% instructions ref="full_legal_name" %}
|
|
93
93
|
Birth name if different from stage name (e.g., "Stefani Joanne Angelina Germanotta" for Lady Gaga).
|
|
94
94
|
Source: Wikipedia infobox, birth certificate records if public.
|
|
95
95
|
{% /instructions %}
|
|
96
96
|
|
|
97
|
-
{%
|
|
97
|
+
{% field kind="string" id="stage_name" label="Stage/Professional Name" required=true %}{% /field %}
|
|
98
98
|
|
|
99
|
-
{%
|
|
99
|
+
{% field kind="string" id="birth_date" label="Birth Date" pattern="^\\d{4}-\\d{2}-\\d{2}$" %}{% /field %}
|
|
100
100
|
|
|
101
101
|
{% instructions ref="birth_date" %}
|
|
102
102
|
Format: YYYY-MM-DD (e.g., 1990-07-02).
|
|
@@ -104,21 +104,21 @@ Sources: Wikipedia, IMDb bio, Famous Birthdays.
|
|
|
104
104
|
Note: Some celebrities obscure their birth year; note if disputed.
|
|
105
105
|
{% /instructions %}
|
|
106
106
|
|
|
107
|
-
{%
|
|
107
|
+
{% field kind="string" id="birth_place" label="Birth Place" %}{% /field %}
|
|
108
108
|
|
|
109
109
|
{% instructions ref="birth_place" %}
|
|
110
110
|
Format: City, State/Province, Country.
|
|
111
111
|
Source: Wikipedia, IMDb.
|
|
112
112
|
{% /instructions %}
|
|
113
113
|
|
|
114
|
-
{%
|
|
114
|
+
{% field kind="string" id="nationality" label="Nationality/Citizenship" %}{% /field %}
|
|
115
115
|
|
|
116
116
|
{% instructions ref="nationality" %}
|
|
117
117
|
List all known citizenships (some celebrities hold multiple).
|
|
118
118
|
Source: Wikipedia, press interviews.
|
|
119
119
|
{% /instructions %}
|
|
120
120
|
|
|
121
|
-
{%
|
|
121
|
+
{% field kind="string" id="height" label="Height" %}{% /field %}
|
|
122
122
|
|
|
123
123
|
{% instructions ref="height" %}
|
|
124
124
|
Format: X'Y" (X cm) - e.g., 5'7" (170 cm).
|
|
@@ -126,7 +126,7 @@ Source: IMDb, CelebrityHeights.com (surprisingly accurate), Google Knowledge Pan
|
|
|
126
126
|
Note: Heights are often disputed/inflated.
|
|
127
127
|
{% /instructions %}
|
|
128
128
|
|
|
129
|
-
{%
|
|
129
|
+
{% field kind="string" id="death_info" label="Death Information (if applicable)" %}{% /field %}
|
|
130
130
|
|
|
131
131
|
{% instructions ref="death_info" %}
|
|
132
132
|
Format: YYYY-MM-DD | Location | Cause | Age at death
|
|
@@ -135,14 +135,14 @@ Sources: Wikipedia, obituaries, Find A Grave.
|
|
|
135
135
|
Leave empty if person is living.
|
|
136
136
|
{% /instructions %}
|
|
137
137
|
|
|
138
|
-
{%
|
|
138
|
+
{% field kind="string" id="resting_place" label="Burial/Resting Place" %}{% /field %}
|
|
139
139
|
|
|
140
140
|
{% instructions ref="resting_place" %}
|
|
141
141
|
For deceased: Cemetery name, location.
|
|
142
142
|
Source: Find A Grave (findagrave.com), Wikipedia.
|
|
143
143
|
{% /instructions %}
|
|
144
144
|
|
|
145
|
-
{%
|
|
145
|
+
{% field kind="string_list" id="core_biography_sources" label="Core Bio Sources" %}{% /field %}
|
|
146
146
|
|
|
147
147
|
{% instructions ref="core_biography_sources" %}
|
|
148
148
|
URLs used as sources for this section. One URL per line.
|
|
@@ -157,7 +157,7 @@ Personal background often reveals interesting context.
|
|
|
157
157
|
Sources: NNDB.com (excellent for religion/politics/causes), Wikipedia Personal Life section, in-depth magazine profiles.
|
|
158
158
|
{% /description %}
|
|
159
159
|
|
|
160
|
-
{%
|
|
160
|
+
{% field kind="string" id="ethnicity_ancestry" label="Ethnicity/Ancestry" %}{% /field %}
|
|
161
161
|
|
|
162
162
|
{% instructions ref="ethnicity_ancestry" %}
|
|
163
163
|
Ethnic background and known ancestry.
|
|
@@ -165,7 +165,7 @@ Sources: Wikipedia, celebrity interviews, Ancestry.com findings if public, NNDB.
|
|
|
165
165
|
Handle sensitively; only include what the celebrity has publicly discussed.
|
|
166
166
|
{% /instructions %}
|
|
167
167
|
|
|
168
|
-
{%
|
|
168
|
+
{% field kind="string" id="religion" label="Religion/Spiritual Beliefs" %}{% /field %}
|
|
169
169
|
|
|
170
170
|
{% instructions ref="religion" %}
|
|
171
171
|
Religious upbringing and current beliefs if publicly stated.
|
|
@@ -173,7 +173,7 @@ Source: NNDB.com (tracks this specifically), Wikipedia, magazine interviews.
|
|
|
173
173
|
Example: "Raised Catholic, currently practices Kabbalah"
|
|
174
174
|
{% /instructions %}
|
|
175
175
|
|
|
176
|
-
{%
|
|
176
|
+
{% field kind="string" id="political_affiliation" label="Political Affiliation/Views" %}{% /field %}
|
|
177
177
|
|
|
178
178
|
{% instructions ref="political_affiliation" %}
|
|
179
179
|
Known political views, party affiliation, endorsements.
|
|
@@ -184,25 +184,31 @@ Sources:
|
|
|
184
184
|
Example: "Democrat; donated $50K to Obama 2012 per FEC; publicly endorsed Biden 2020"
|
|
185
185
|
{% /instructions %}
|
|
186
186
|
|
|
187
|
-
{%
|
|
187
|
+
{% field kind="table" id="causes_activism" label="Causes & Activism"
|
|
188
|
+
columnIds=["cause", "role_involvement", "source"]
|
|
189
|
+
columnTypes=["string", "string", "string"] %}
|
|
190
|
+
| Cause | Role/Involvement | Source |
|
|
191
|
+
|-------|------------------|--------|
|
|
192
|
+
{% /field %}
|
|
188
193
|
|
|
189
194
|
{% instructions ref="causes_activism" %}
|
|
190
|
-
|
|
191
|
-
Format: Cause | Role/Involvement | Source
|
|
192
|
-
Example: "Climate Change | Founded Earth Alliance with DiCaprio | earthalliance.org"
|
|
195
|
+
Example: Climate Change | Founded Earth Alliance with DiCaprio | earthalliance.org
|
|
193
196
|
Sources: NNDB.com, Charity Navigator (for their foundations), Wikipedia, press.
|
|
194
197
|
{% /instructions %}
|
|
195
198
|
|
|
196
|
-
{%
|
|
199
|
+
{% field kind="table" id="education" label="Education History"
|
|
200
|
+
columnIds=["institution", "degree_program", "years", "notes"]
|
|
201
|
+
columnTypes=["string", "string", "string", "string"] %}
|
|
202
|
+
| Institution | Degree/Program | Years | Notes |
|
|
203
|
+
|-------------|----------------|-------|-------|
|
|
204
|
+
{% /field %}
|
|
197
205
|
|
|
198
206
|
{% instructions ref="education" %}
|
|
199
|
-
|
|
200
|
-
Format: Institution | Degree/Program | Years | Notes
|
|
201
|
-
Example: "Yale University | Drama (incomplete) | 2000-2002 | Left to pursue acting"
|
|
207
|
+
Example: Yale University | Drama (incomplete) | 2000-2002 | Left to pursue acting
|
|
202
208
|
Sources: Wikipedia, LinkedIn (if they have one), university alumni lists, IMDb bio.
|
|
203
209
|
{% /instructions %}
|
|
204
210
|
|
|
205
|
-
{%
|
|
211
|
+
{% field kind="string_list" id="personal_details_sources" label="Personal Details Sources" %}{% /field %}
|
|
206
212
|
|
|
207
213
|
{% instructions ref="personal_details_sources" %}
|
|
208
214
|
URLs used as sources for this section. One URL per line.
|
|
@@ -217,7 +223,7 @@ Relationship history is a core area of celebrity coverage.
|
|
|
217
223
|
Sources: Wikipedia, WhosDatedWho.com, tabloids (note if tabloid-sourced), court records for divorces.
|
|
218
224
|
{% /description %}
|
|
219
225
|
|
|
220
|
-
{%
|
|
226
|
+
{% field kind="string" id="parents" label="Parents" %}{% /field %}
|
|
221
227
|
|
|
222
228
|
{% instructions ref="parents" %}
|
|
223
229
|
Format: Father: Name (occupation) | Mother: Name (occupation)
|
|
@@ -225,43 +231,57 @@ Note if parents were also in entertainment industry.
|
|
|
225
231
|
Sources: Wikipedia, IMDb bio.
|
|
226
232
|
{% /instructions %}
|
|
227
233
|
|
|
228
|
-
{%
|
|
234
|
+
{% field kind="table" id="siblings" label="Siblings"
|
|
235
|
+
columnIds=["name", "relationship", "notable_info"]
|
|
236
|
+
columnTypes=["string", "string", "string"] %}
|
|
237
|
+
| Name | Relationship | Notable Info |
|
|
238
|
+
|------|--------------|--------------|
|
|
239
|
+
{% /field %}
|
|
229
240
|
|
|
230
241
|
{% instructions ref="siblings" %}
|
|
231
|
-
|
|
232
|
-
Format: Name | Relationship | Notable info (if any)
|
|
233
|
-
Example: "Jake Gyllenhaal | Brother | Actor, Oscar nominee"
|
|
242
|
+
Example: Jake Gyllenhaal | Brother | Actor, Oscar nominee
|
|
234
243
|
{% /instructions %}
|
|
235
244
|
|
|
236
|
-
{%
|
|
245
|
+
{% field kind="table" id="marriages" label="Marriage History"
|
|
246
|
+
columnIds=["spouse_name", "wedding_date", "divorce_date", "duration", "source"]
|
|
247
|
+
columnTypes=["string", "date", "string", "string", "string"] %}
|
|
248
|
+
| Spouse Name | Wedding Date | Divorce Date | Duration | Source |
|
|
249
|
+
|-------------|--------------|--------------|----------|--------|
|
|
250
|
+
{% /field %}
|
|
237
251
|
|
|
238
252
|
{% instructions ref="marriages" %}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
Example: "Brad Pitt | 2000-07-29 | 2005-01-07 | 4.5 years | Court records"
|
|
253
|
+
Chronological order. Divorce Date should be date or "present".
|
|
254
|
+
Example: Brad Pitt | 2000-07-29 | 2005-01-07 | 4.5 years | Court records
|
|
242
255
|
Sources: Wikipedia, WhosDatedWho, court records for divorces.
|
|
243
256
|
{% /instructions %}
|
|
244
257
|
|
|
245
|
-
{%
|
|
258
|
+
{% field kind="table" id="children" label="Children"
|
|
259
|
+
columnIds=["name", "birth_year", "other_parent", "notes"]
|
|
260
|
+
columnTypes=["string", "year", "string", "string"] %}
|
|
261
|
+
| Name | Birth Year | Other Parent | Notes |
|
|
262
|
+
|------|------------|--------------|-------|
|
|
263
|
+
{% /field %}
|
|
246
264
|
|
|
247
265
|
{% instructions ref="children" %}
|
|
248
|
-
|
|
249
|
-
Format: Name | Birth Year | Other Parent | Notes
|
|
250
|
-
Example: "Shiloh Jolie-Pitt | 2006 | Brad Pitt | Biological child"
|
|
266
|
+
Example: Shiloh Jolie-Pitt | 2006 | Brad Pitt | Biological child
|
|
251
267
|
Note: Some celebrities keep children very private; respect when info is intentionally hidden.
|
|
252
268
|
{% /instructions %}
|
|
253
269
|
|
|
254
|
-
{%
|
|
270
|
+
{% field kind="table" id="notable_relationships" label="Notable Dating History"
|
|
271
|
+
columnIds=["partner_name", "dates", "reliability"]
|
|
272
|
+
columnTypes=["string", "string", "string"] %}
|
|
273
|
+
| Partner Name | Dates | Reliability |
|
|
274
|
+
|--------------|-------|-------------|
|
|
275
|
+
{% /field %}
|
|
255
276
|
|
|
256
277
|
{% instructions ref="notable_relationships" %}
|
|
257
|
-
Significant relationships (not marriages), most recent first.
|
|
258
|
-
|
|
259
|
-
Example: "Taylor Swift | 2016-2017 | Confirmed via paparazzi/social media"
|
|
278
|
+
Significant relationships (not marriages), most recent first.
|
|
279
|
+
Example: Taylor Swift | 2016-2017 | Confirmed via paparazzi/social media
|
|
260
280
|
Sources: WhosDatedWho.com, tabloids (note reliability), press confirmations.
|
|
261
281
|
Note if "rumored only" vs "confirmed."
|
|
262
282
|
{% /instructions %}
|
|
263
283
|
|
|
264
|
-
{%
|
|
284
|
+
{% field kind="string_list" id="family_relationships_sources" label="Family & Relationships Sources" %}{% /field %}
|
|
265
285
|
|
|
266
286
|
{% instructions ref="family_relationships_sources" %}
|
|
267
287
|
URLs used as sources for this section. One URL per line.
|
|
@@ -277,7 +297,7 @@ Secondary: TMDb (themoviedb.org), Rotten Tomatoes, AllMovie.
|
|
|
277
297
|
For TV: also check TV Guide archives.
|
|
278
298
|
{% /description %}
|
|
279
299
|
|
|
280
|
-
{%
|
|
300
|
+
{% field kind="string" id="primary_profession" label="Primary Profession(s)" required=true %}{% /field %}
|
|
281
301
|
|
|
282
302
|
{% instructions ref="primary_profession" %}
|
|
283
303
|
Main profession(s) in entertainment.
|
|
@@ -285,14 +305,14 @@ Example: "Actor, Producer, Director" or "Singer, Actress, Dancer"
|
|
|
285
305
|
Source: IMDb, Wikipedia lead paragraph.
|
|
286
306
|
{% /instructions %}
|
|
287
307
|
|
|
288
|
-
{%
|
|
308
|
+
{% field kind="string" id="career_start" label="Career Start Year" pattern="^\\d{4}$" %}{% /field %}
|
|
289
309
|
|
|
290
310
|
{% instructions ref="career_start" %}
|
|
291
311
|
Year of first professional credit.
|
|
292
312
|
Source: IMDb earliest credit.
|
|
293
313
|
{% /instructions %}
|
|
294
314
|
|
|
295
|
-
{%
|
|
315
|
+
{% field kind="string" id="breakthrough_role" label="Breakthrough Role" %}{% /field %}
|
|
296
316
|
|
|
297
317
|
{% instructions ref="breakthrough_role" %}
|
|
298
318
|
Format: "Project Title" (Year) as Character Name
|
|
@@ -300,7 +320,7 @@ Example: "Titanic (1997) as Jack Dawson"
|
|
|
300
320
|
Source: Wikipedia, IMDb, press retrospectives.
|
|
301
321
|
{% /instructions %}
|
|
302
322
|
|
|
303
|
-
{%
|
|
323
|
+
{% field kind="string" id="notable_films_table" label="Notable Film Credits (Table)" maxLength=5000 %}{% /field %}
|
|
304
324
|
|
|
305
325
|
{% instructions ref="notable_films_table" %}
|
|
306
326
|
Top 10-15 most significant film roles. Use markdown table:
|
|
@@ -320,7 +340,7 @@ Columns:
|
|
|
320
340
|
Sources: IMDb filmography, Rotten Tomatoes, Box Office Mojo.
|
|
321
341
|
{% /instructions %}
|
|
322
342
|
|
|
323
|
-
{%
|
|
343
|
+
{% field kind="string" id="notable_tv_table" label="Notable TV Credits (Table)" maxLength=5000 %}{% /field %}
|
|
324
344
|
|
|
325
345
|
{% instructions ref="notable_tv_table" %}
|
|
326
346
|
Significant TV appearances. Use markdown table:
|
|
@@ -332,7 +352,7 @@ Significant TV appearances. Use markdown table:
|
|
|
332
352
|
Sources: IMDb, TV Guide archives.
|
|
333
353
|
{% /instructions %}
|
|
334
354
|
|
|
335
|
-
{%
|
|
355
|
+
{% field kind="string" id="upcoming_projects" label="Upcoming/In Production Projects" maxLength=1000 %}{% /field %}
|
|
336
356
|
|
|
337
357
|
{% instructions ref="upcoming_projects" %}
|
|
338
358
|
Announced future projects.
|
|
@@ -340,7 +360,7 @@ Sources: IMDb "In Development", Variety/THR/Deadline announcements, Production W
|
|
|
340
360
|
Note status: Filming, Post-production, Announced.
|
|
341
361
|
{% /instructions %}
|
|
342
362
|
|
|
343
|
-
{%
|
|
363
|
+
{% field kind="string" id="box_office_stats" label="Career Box Office Statistics" %}{% /field %}
|
|
344
364
|
|
|
345
365
|
{% instructions ref="box_office_stats" %}
|
|
346
366
|
Format: Total Gross | # Films | Average | Highest | Source
|
|
@@ -348,7 +368,7 @@ Example: "$10.2B total | 35 films | $291M avg | Barbie ($1.4B) | Box Office Mojo
|
|
|
348
368
|
Source: Box Office Mojo actor page, The Numbers.
|
|
349
369
|
{% /instructions %}
|
|
350
370
|
|
|
351
|
-
{%
|
|
371
|
+
{% field kind="string_list" id="filmography_career_sources" label="Filmography Sources" %}{% /field %}
|
|
352
372
|
|
|
353
373
|
{% instructions ref="filmography_career_sources" %}
|
|
354
374
|
URLs used as sources for this section. One URL per line.
|
|
@@ -363,7 +383,7 @@ Aggregate critic and audience scores.
|
|
|
363
383
|
Sources: Rotten Tomatoes career page, Metacritic, Letterboxd (for film community sentiment).
|
|
364
384
|
{% /description %}
|
|
365
385
|
|
|
366
|
-
{%
|
|
386
|
+
{% field kind="string" id="rt_career_stats" label="Rotten Tomatoes Career Stats" %}{% /field %}
|
|
367
387
|
|
|
368
388
|
{% instructions ref="rt_career_stats" %}
|
|
369
389
|
Format: Avg Tomatometer | # Fresh films | # Rotten films | Notable scores
|
|
@@ -371,7 +391,7 @@ Example: "68% average | 25 Fresh | 12 Rotten | Best: Lady Bird (99%), Worst: Mov
|
|
|
371
391
|
Source: rottentomatoes.com/celebrity/
|
|
372
392
|
{% /instructions %}
|
|
373
393
|
|
|
374
|
-
{%
|
|
394
|
+
{% field kind="string" id="letterboxd_rating" label="Letterboxd Average Rating" %}{% /field %}
|
|
375
395
|
|
|
376
396
|
{% instructions ref="letterboxd_rating" %}
|
|
377
397
|
Average rating across their filmography on Letterboxd.
|
|
@@ -379,7 +399,7 @@ Format: X.X/5 | Most-logged film | Highest-rated film
|
|
|
379
399
|
Source: letterboxd.com (search actor name).
|
|
380
400
|
{% /instructions %}
|
|
381
401
|
|
|
382
|
-
{%
|
|
402
|
+
{% field kind="string_list" id="critical_reception_sources" label="Critical Reception Sources" %}{% /field %}
|
|
383
403
|
|
|
384
404
|
{% instructions ref="critical_reception_sources" %}
|
|
385
405
|
URLs used as sources for this section. One URL per line.
|
|
@@ -394,7 +414,7 @@ Complete awards history including nominations and wins.
|
|
|
394
414
|
Sources: IMDb Awards page, Oscars.org, Emmy database, Wikipedia filmography tables.
|
|
395
415
|
{% /description %}
|
|
396
416
|
|
|
397
|
-
{%
|
|
417
|
+
{% field kind="string" id="major_awards_summary" label="Major Awards Summary" %}{% /field %}
|
|
398
418
|
|
|
399
419
|
{% instructions ref="major_awards_summary" %}
|
|
400
420
|
Quick summary of biggest wins.
|
|
@@ -402,7 +422,7 @@ Format: # Oscar wins/noms | # Emmy wins/noms | # Grammy wins/noms | # Golden Glo
|
|
|
402
422
|
Example: "3 Oscar noms (1 win) | 0 Emmy | 0 Grammy | 4 GG noms (2 wins) | SAG Ensemble winner"
|
|
403
423
|
{% /instructions %}
|
|
404
424
|
|
|
405
|
-
{%
|
|
425
|
+
{% field kind="string" id="oscar_history" label="Academy Award History (Table)" maxLength=3000 %}{% /field %}
|
|
406
426
|
|
|
407
427
|
{% instructions ref="oscar_history" %}
|
|
408
428
|
Use markdown table:
|
|
@@ -415,7 +435,7 @@ Use markdown table:
|
|
|
415
435
|
Source: Oscars.org, IMDb Awards.
|
|
416
436
|
{% /instructions %}
|
|
417
437
|
|
|
418
|
-
{%
|
|
438
|
+
{% field kind="string" id="other_major_awards" label="Other Major Awards (Table)" maxLength=3000 %}{% /field %}
|
|
419
439
|
|
|
420
440
|
{% instructions ref="other_major_awards" %}
|
|
421
441
|
Emmy, Grammy, Tony, Golden Globe, SAG, BAFTA, Cannes, etc.
|
|
@@ -428,14 +448,14 @@ Use markdown table:
|
|
|
428
448
|
Sources: Respective award databases, IMDb Awards.
|
|
429
449
|
{% /instructions %}
|
|
430
450
|
|
|
431
|
-
{%
|
|
451
|
+
{% field kind="string_list" id="notable_honors" label="Other Honors & Recognition" %}{% /field %}
|
|
432
452
|
|
|
433
453
|
{% instructions ref="notable_honors" %}
|
|
434
454
|
Non-award honors, one per line.
|
|
435
455
|
Examples: Hollywood Walk of Fame star, Kennedy Center Honor, Presidential Medal, Honorary degrees, etc.
|
|
436
456
|
{% /instructions %}
|
|
437
457
|
|
|
438
|
-
{%
|
|
458
|
+
{% field kind="string_list" id="awards_recognition_sources" label="Awards Sources" %}{% /field %}
|
|
439
459
|
|
|
440
460
|
{% instructions ref="awards_recognition_sources" %}
|
|
441
461
|
URLs used as sources for this section. One URL per line.
|
|
@@ -451,7 +471,7 @@ Sources: CelebrityNetWorth (estimates only), Forbes Celebrity 100, SEC filings,
|
|
|
451
471
|
Note: Net worth figures are estimates and often disputed.
|
|
452
472
|
{% /description %}
|
|
453
473
|
|
|
454
|
-
{%
|
|
474
|
+
{% field kind="string" id="estimated_net_worth" label="Estimated Net Worth" %}{% /field %}
|
|
455
475
|
|
|
456
476
|
{% instructions ref="estimated_net_worth" %}
|
|
457
477
|
Format: $XXM-$XXM (Source, Date)
|
|
@@ -459,16 +479,20 @@ Example: "$400M-$450M (CelebrityNetWorth, 2024; Forbes estimates $380M)"
|
|
|
459
479
|
Note: Always include source and date; these estimates vary wildly.
|
|
460
480
|
{% /instructions %}
|
|
461
481
|
|
|
462
|
-
{%
|
|
482
|
+
{% field kind="table" id="known_salaries" label="Known Salary/Earnings"
|
|
483
|
+
columnIds=["project", "amount", "year", "source"]
|
|
484
|
+
columnTypes=["string", "string", "year", "string"] %}
|
|
485
|
+
| Project | Amount | Year | Source |
|
|
486
|
+
|---------|--------|------|--------|
|
|
487
|
+
{% /field %}
|
|
463
488
|
|
|
464
489
|
{% instructions ref="known_salaries" %}
|
|
465
|
-
Reported salaries per project
|
|
466
|
-
|
|
467
|
-
Example: "Barbie | $12.5M + $50M backend | 2023 | Variety"
|
|
490
|
+
Reported salaries per project.
|
|
491
|
+
Example: Barbie | $12.5M + $50M backend | 2023 | Variety
|
|
468
492
|
Sources: Variety, THR salary reports, leaked studio documents.
|
|
469
493
|
{% /instructions %}
|
|
470
494
|
|
|
471
|
-
{%
|
|
495
|
+
{% field kind="string" id="forbes_rankings" label="Forbes Celebrity 100 History" %}{% /field %}
|
|
472
496
|
|
|
473
497
|
{% instructions ref="forbes_rankings" %}
|
|
474
498
|
Historical Forbes Celebrity 100 rankings if available.
|
|
@@ -477,34 +501,46 @@ Example: "2023: #8, $59M | 2022: #12, $42M"
|
|
|
477
501
|
Source: Forbes.com Celebrity 100 lists.
|
|
478
502
|
{% /instructions %}
|
|
479
503
|
|
|
480
|
-
{%
|
|
504
|
+
{% field kind="table" id="business_ventures" label="Business Ventures & Companies"
|
|
505
|
+
columnIds=["company", "role", "industry", "status", "source"]
|
|
506
|
+
columnTypes=["string", "string", "string", "string", "string"] %}
|
|
507
|
+
| Company | Role | Industry | Status | Source |
|
|
508
|
+
|---------|------|----------|--------|--------|
|
|
509
|
+
{% /field %}
|
|
481
510
|
|
|
482
511
|
{% instructions ref="business_ventures" %}
|
|
483
|
-
Companies owned, founded, or invested in.
|
|
484
|
-
|
|
485
|
-
Example: "Honest Company | Co-founder | Consumer goods | IPO 2021, now private | SEC filings"
|
|
512
|
+
Companies owned, founded, or invested in.
|
|
513
|
+
Example: Honest Company | Co-founder | Consumer goods | IPO 2021, now private | SEC filings
|
|
486
514
|
Sources: Forbes, SEC EDGAR (for public companies), Crunchbase, press releases.
|
|
487
515
|
{% /instructions %}
|
|
488
516
|
|
|
489
|
-
{%
|
|
517
|
+
{% field kind="table" id="endorsements" label="Major Endorsements & Sponsorships"
|
|
518
|
+
columnIds=["brand", "type", "value", "years", "source"]
|
|
519
|
+
columnTypes=["string", "string", "string", "string", "string"] %}
|
|
520
|
+
| Brand | Type | Value | Years | Source |
|
|
521
|
+
|-------|------|-------|-------|--------|
|
|
522
|
+
{% /field %}
|
|
490
523
|
|
|
491
524
|
{% instructions ref="endorsements" %}
|
|
492
|
-
Brand deals and endorsements.
|
|
493
|
-
|
|
494
|
-
Example: "Chanel No. 5 | Global Ambassador | $5M/year | 2020-present | Variety"
|
|
525
|
+
Brand deals and endorsements.
|
|
526
|
+
Example: Chanel No. 5 | Global Ambassador | $5M/year | 2020-present | Variety
|
|
495
527
|
Sources: Press releases, Variety/THR business coverage, social media sponsored posts.
|
|
496
528
|
{% /instructions %}
|
|
497
529
|
|
|
498
|
-
{%
|
|
530
|
+
{% field kind="table" id="real_estate" label="Known Real Estate Holdings"
|
|
531
|
+
columnIds=["property", "location", "price", "year", "source"]
|
|
532
|
+
columnTypes=["string", "string", "string", "year", "string"] %}
|
|
533
|
+
| Property | Location | Price | Year | Source |
|
|
534
|
+
|----------|----------|-------|------|--------|
|
|
535
|
+
{% /field %}
|
|
499
536
|
|
|
500
537
|
{% instructions ref="real_estate" %}
|
|
501
|
-
Significant property purchases/sales.
|
|
502
|
-
|
|
503
|
-
Example: "$25M mansion | Beverly Hills, CA | $25M | 2021 | Variety Dirt"
|
|
538
|
+
Significant property purchases/sales.
|
|
539
|
+
Example: $25M mansion | Beverly Hills, CA | $25M | 2021 | Variety Dirt
|
|
504
540
|
Sources: Variety Dirt column, real estate news, property records.
|
|
505
541
|
{% /instructions %}
|
|
506
542
|
|
|
507
|
-
{%
|
|
543
|
+
{% field kind="string_list" id="financial_business_sources" label="Financial & Business Sources" %}{% /field %}
|
|
508
544
|
|
|
509
545
|
{% instructions ref="financial_business_sources" %}
|
|
510
546
|
URLs used as sources for this section. One URL per line.
|
|
@@ -520,40 +556,48 @@ Sources: The Smoking Gun (legal docs), court records (PACER for federal, state c
|
|
|
520
556
|
Note tabloid vs verified sources clearly.
|
|
521
557
|
{% /description %}
|
|
522
558
|
|
|
523
|
-
{%
|
|
559
|
+
{% field kind="table" id="legal_cases" label="Legal Cases & Lawsuits"
|
|
560
|
+
columnIds=["case_type", "year", "parties", "outcome", "source"]
|
|
561
|
+
columnTypes=["string", "year", "string", "string", "string"] %}
|
|
562
|
+
| Case Type | Year | Parties | Outcome | Source |
|
|
563
|
+
|-----------|------|---------|---------|--------|
|
|
564
|
+
{% /field %}
|
|
524
565
|
|
|
525
566
|
{% instructions ref="legal_cases" %}
|
|
526
|
-
Court cases, lawsuits, legal proceedings.
|
|
527
|
-
|
|
528
|
-
Example:
|
|
529
|
-
|
|
530
|
-
Sources:
|
|
531
|
-
- PACER (pacer.gov) for federal cases
|
|
532
|
-
- State court record searches
|
|
533
|
-
- The Smoking Gun (thesmokinggun.com) - publishes actual legal documents
|
|
534
|
-
- Court Listener (courtlistener.com) - free federal case search
|
|
567
|
+
Court cases, lawsuits, legal proceedings.
|
|
568
|
+
Example: Divorce | 2016 | Jolie v. Pitt | Settled | Court records, TMZ
|
|
569
|
+
Example: Defamation | 2022 | Depp v. Heard | Depp won $10.35M | Fairfax County Court
|
|
570
|
+
Sources: PACER, state court record searches, The Smoking Gun, Court Listener.
|
|
535
571
|
{% /instructions %}
|
|
536
572
|
|
|
537
|
-
{%
|
|
573
|
+
{% field kind="table" id="arrests_charges" label="Arrests & Criminal Charges"
|
|
574
|
+
columnIds=["year", "charge", "location", "outcome", "source"]
|
|
575
|
+
columnTypes=["year", "string", "string", "string", "string"] %}
|
|
576
|
+
| Year | Charge | Location | Outcome | Source |
|
|
577
|
+
|------|--------|----------|---------|--------|
|
|
578
|
+
{% /field %}
|
|
538
579
|
|
|
539
580
|
{% instructions ref="arrests_charges" %}
|
|
540
|
-
Criminal matters if any.
|
|
541
|
-
|
|
542
|
-
Example: "2007 | DUI | Los Angeles | Plea deal, probation | TMZ, court records"
|
|
581
|
+
Criminal matters if any.
|
|
582
|
+
Example: 2007 | DUI | Los Angeles | Plea deal, probation | TMZ, court records
|
|
543
583
|
Sources: The Smoking Gun (has mugshots/records), court records, news archives.
|
|
544
584
|
{% /instructions %}
|
|
545
585
|
|
|
546
|
-
{%
|
|
586
|
+
{% field kind="table" id="controversies" label="Public Controversies"
|
|
587
|
+
columnIds=["year", "issue", "description", "outcome", "reliability"]
|
|
588
|
+
columnTypes=["year", "string", "string", "string", "string"] %}
|
|
589
|
+
| Year | Issue | Description | Outcome | Reliability |
|
|
590
|
+
|------|-------|-------------|---------|-------------|
|
|
591
|
+
{% /field %}
|
|
547
592
|
|
|
548
593
|
{% instructions ref="controversies" %}
|
|
549
|
-
Non-legal controversies.
|
|
550
|
-
|
|
551
|
-
Example: "2021 | Workplace behavior | Accusations of diva behavior on set | Denied by rep | Tabloid reports (low reliability)"
|
|
594
|
+
Non-legal controversies.
|
|
595
|
+
Example: 2021 | Workplace behavior | Accusations of diva behavior on set | Denied by rep | Tabloid reports (low)
|
|
552
596
|
Sources: Wikipedia Controversies section, press, tabloids.
|
|
553
597
|
Always note source reliability (high/medium/low).
|
|
554
598
|
{% /instructions %}
|
|
555
599
|
|
|
556
|
-
{%
|
|
600
|
+
{% field kind="string" id="metoo_related" label="MeToo/Harassment Allegations" %}{% /field %}
|
|
557
601
|
|
|
558
602
|
{% instructions ref="metoo_related" %}
|
|
559
603
|
If applicable, summarize any MeToo-era allegations or involvement.
|
|
@@ -561,7 +605,7 @@ Note: Handle with appropriate seriousness. Include outcomes of any investigation
|
|
|
561
605
|
Sources: Major news outlets, court records if any.
|
|
562
606
|
{% /instructions %}
|
|
563
607
|
|
|
564
|
-
{%
|
|
608
|
+
{% field kind="string_list" id="controversies_legal_sources" label="Controversies & Legal Sources" %}{% /field %}
|
|
565
609
|
|
|
566
610
|
{% instructions ref="controversies_legal_sources" %}
|
|
567
611
|
URLs used as sources for this section. One URL per line.
|
|
@@ -575,7 +619,7 @@ URLs used as sources for this section. One URL per line.
|
|
|
575
619
|
Search each platform directly for verified accounts. Note follower counts, engagement, and activity level.
|
|
576
620
|
{% /description %}
|
|
577
621
|
|
|
578
|
-
{%
|
|
622
|
+
{% field kind="string" id="instagram" label="Instagram" %}{% /field %}
|
|
579
623
|
|
|
580
624
|
{% instructions ref="instagram" %}
|
|
581
625
|
Format: @handle | Followers | Verified? | Activity | URL
|
|
@@ -583,7 +627,7 @@ Example: "@margotrobbie | 28.5M followers | Verified | ~2 posts/week | instagram
|
|
|
583
627
|
Source: Search instagram.com directly. Look for blue verification badge.
|
|
584
628
|
{% /instructions %}
|
|
585
629
|
|
|
586
|
-
{%
|
|
630
|
+
{% field kind="string" id="twitter_x" label="Twitter/X" %}{% /field %}
|
|
587
631
|
|
|
588
632
|
{% instructions ref="twitter_x" %}
|
|
589
633
|
Format: @handle | Followers | Verified? | Activity | URL
|
|
@@ -591,7 +635,7 @@ Example: "@RealHughJackman | 15M followers | Verified | Active daily | x.com/Rea
|
|
|
591
635
|
Source: Search x.com directly.
|
|
592
636
|
{% /instructions %}
|
|
593
637
|
|
|
594
|
-
{%
|
|
638
|
+
{% field kind="string" id="tiktok" label="TikTok" %}{% /field %}
|
|
595
639
|
|
|
596
640
|
{% instructions ref="tiktok" %}
|
|
597
641
|
Format: @handle | Followers | Verified? | Activity | URL
|
|
@@ -599,7 +643,7 @@ Or "No official account found"
|
|
|
599
643
|
Source: Search tiktok.com directly.
|
|
600
644
|
{% /instructions %}
|
|
601
645
|
|
|
602
|
-
{%
|
|
646
|
+
{% field kind="string" id="youtube" label="YouTube" %}{% /field %}
|
|
603
647
|
|
|
604
648
|
{% instructions ref="youtube" %}
|
|
605
649
|
Format: Channel Name | Subscribers | Videos | URL
|
|
@@ -608,14 +652,14 @@ Or "No official channel" if none exists.
|
|
|
608
652
|
Source: Search youtube.com.
|
|
609
653
|
{% /instructions %}
|
|
610
654
|
|
|
611
|
-
{%
|
|
655
|
+
{% field kind="string" id="facebook" label="Facebook" %}{% /field %}
|
|
612
656
|
|
|
613
657
|
{% instructions ref="facebook" %}
|
|
614
658
|
Format: Page Name | Followers | Verified? | URL
|
|
615
659
|
Source: Search facebook.com.
|
|
616
660
|
{% /instructions %}
|
|
617
661
|
|
|
618
|
-
{%
|
|
662
|
+
{% field kind="string" id="threads" label="Threads" %}{% /field %}
|
|
619
663
|
|
|
620
664
|
{% instructions ref="threads" %}
|
|
621
665
|
Format: @handle | Followers | URL
|
|
@@ -623,14 +667,14 @@ Or "Not on Threads"
|
|
|
623
667
|
Source: Search threads.net.
|
|
624
668
|
{% /instructions %}
|
|
625
669
|
|
|
626
|
-
{%
|
|
670
|
+
{% field kind="string" id="other_platforms" label="Other Platforms (Twitch, Patreon, OnlyFans, etc.)" %}{% /field %}
|
|
627
671
|
|
|
628
672
|
{% instructions ref="other_platforms" %}
|
|
629
673
|
Any other notable platform presence.
|
|
630
674
|
Format: Platform | Handle | Followers | URL
|
|
631
675
|
{% /instructions %}
|
|
632
676
|
|
|
633
|
-
{%
|
|
677
|
+
{% field kind="string_list" id="social_media_sources" label="Social Media Sources" %}{% /field %}
|
|
634
678
|
|
|
635
679
|
{% instructions ref="social_media_sources" %}
|
|
636
680
|
URLs used as sources for this section. One URL per line.
|
|
@@ -646,7 +690,7 @@ Sources: Reddit, dedicated fan wikis, ONTD (Oh No They Didn't), Lipstick Alley,
|
|
|
646
690
|
Note: These sources provide "insider" perspective but vary in reliability.
|
|
647
691
|
{% /description %}
|
|
648
692
|
|
|
649
|
-
{%
|
|
693
|
+
{% field kind="string" id="reddit_presence" label="Reddit Presence" %}{% /field %}
|
|
650
694
|
|
|
651
695
|
{% instructions ref="reddit_presence" %}
|
|
652
696
|
Format: Subreddit(s) | Members | Activity Level | URL
|
|
@@ -655,7 +699,7 @@ Also note if subject has done AMAs.
|
|
|
655
699
|
Source: Search reddit.com.
|
|
656
700
|
{% /instructions %}
|
|
657
701
|
|
|
658
|
-
{%
|
|
702
|
+
{% field kind="string" id="fan_wiki" label="Fan Wiki/Fandom Page" %}{% /field %}
|
|
659
703
|
|
|
660
704
|
{% instructions ref="fan_wiki" %}
|
|
661
705
|
Dedicated fan wikis often have exhaustive detail.
|
|
@@ -664,7 +708,7 @@ Example: "Swiftie Wiki | taylor-swift.fandom.com | Extremely detailed, every con
|
|
|
664
708
|
Source: Search [celebrity name] fandom.com or wikia.
|
|
665
709
|
{% /instructions %}
|
|
666
710
|
|
|
667
|
-
{%
|
|
711
|
+
{% field kind="string_list" id="fan_community_sentiment" label="Fan Community Sentiment" %}{% /field %}
|
|
668
712
|
|
|
669
713
|
{% instructions ref="fan_community_sentiment" %}
|
|
670
714
|
General reputation within fan communities. One community per line.
|
|
@@ -675,7 +719,7 @@ Sources: ONTD (ohnotheydidnt.livejournal.com), Lipstick Alley, Data Lounge, r/en
|
|
|
675
719
|
Note: These are fan opinions, not facts.
|
|
676
720
|
{% /instructions %}
|
|
677
721
|
|
|
678
|
-
{%
|
|
722
|
+
{% field kind="string_list" id="nicknames_memes" label="Nicknames, Memes & Cultural References" %}{% /field %}
|
|
679
723
|
|
|
680
724
|
{% instructions ref="nicknames_memes" %}
|
|
681
725
|
Notable nicknames, viral memes, or cultural references. One per line.
|
|
@@ -683,7 +727,7 @@ Example: "Leo pointing at TV meme | Once Upon a Time scene | Ubiquitous internet
|
|
|
683
727
|
Example: "J.Lo | Common nickname since early career"
|
|
684
728
|
{% /instructions %}
|
|
685
729
|
|
|
686
|
-
{%
|
|
730
|
+
{% field kind="string_list" id="fan_community_sources" label="Fan Community Sources" %}{% /field %}
|
|
687
731
|
|
|
688
732
|
{% instructions ref="fan_community_sources" %}
|
|
689
733
|
URLs used as sources for this section. One URL per line.
|
|
@@ -698,26 +742,33 @@ Notable interviews and media appearances.
|
|
|
698
742
|
Sources: YouTube (talk show archives), podcast platforms, major publications.
|
|
699
743
|
{% /description %}
|
|
700
744
|
|
|
701
|
-
{%
|
|
745
|
+
{% field kind="table" id="notable_interviews" label="Notable Interviews"
|
|
746
|
+
columnIds=["outlet_show", "date", "topic", "url"]
|
|
747
|
+
columnTypes=["string", "string", "string", "url"] %}
|
|
748
|
+
| Outlet/Show | Date | Topic | URL |
|
|
749
|
+
|-------------|------|-------|-----|
|
|
750
|
+
{% /field %}
|
|
702
751
|
|
|
703
752
|
{% instructions ref="notable_interviews" %}
|
|
704
|
-
Most revealing or significant interviews.
|
|
705
|
-
|
|
706
|
-
Example: "WTF with Marc Maron | 2019-06 | Candid about childhood trauma | youtube.com/..."
|
|
707
|
-
Example: "Vanity Fair Profile | 2023-08 | Cover story, career retrospective | vanityfair.com/..."
|
|
753
|
+
Most revealing or significant interviews.
|
|
754
|
+
Example: WTF with Marc Maron | 2019-06 | Candid about childhood trauma | https://youtube.com/...
|
|
708
755
|
Prioritize: Long-form podcasts (Maron, Armchair Expert, Fresh Air), major magazine profiles.
|
|
709
756
|
{% /instructions %}
|
|
710
757
|
|
|
711
|
-
{%
|
|
758
|
+
{% field kind="table" id="talk_show_appearances" label="Notable Talk Show Appearances"
|
|
759
|
+
columnIds=["show", "date", "moment", "url"]
|
|
760
|
+
columnTypes=["string", "string", "string", "url"] %}
|
|
761
|
+
| Show | Date | Moment | URL |
|
|
762
|
+
|------|------|--------|-----|
|
|
763
|
+
{% /field %}
|
|
712
764
|
|
|
713
765
|
{% instructions ref="talk_show_appearances" %}
|
|
714
|
-
Memorable talk show moments.
|
|
715
|
-
|
|
716
|
-
Example: "Graham Norton | 2023-07 | Viral story about meeting the Queen | youtube.com/..."
|
|
766
|
+
Memorable talk show moments.
|
|
767
|
+
Example: Graham Norton | 2023-07 | Viral story about meeting the Queen | https://youtube.com/...
|
|
717
768
|
Source: YouTube archives of Fallon, Kimmel, Colbert, Graham Norton, etc.
|
|
718
769
|
{% /instructions %}
|
|
719
770
|
|
|
720
|
-
{%
|
|
771
|
+
{% field kind="string" id="podcast_appearances" label="Podcast Appearances Summary" maxLength=2000 %}{% /field %}
|
|
721
772
|
|
|
722
773
|
{% instructions ref="podcast_appearances" %}
|
|
723
774
|
Overview of podcast appearances.
|
|
@@ -725,7 +776,7 @@ Sources: Spotify, Apple Podcasts - search for celebrity name.
|
|
|
725
776
|
Notable shows to check: WTF with Marc Maron, Armchair Expert, SmartLess, Conan O'Brien Needs a Friend.
|
|
726
777
|
{% /instructions %}
|
|
727
778
|
|
|
728
|
-
{%
|
|
779
|
+
{% field kind="string_list" id="interviews_appearances_sources" label="Media Appearances Sources" %}{% /field %}
|
|
729
780
|
|
|
730
781
|
{% instructions ref="interviews_appearances_sources" %}
|
|
731
782
|
URLs used as sources for this section. One URL per line.
|
|
@@ -740,7 +791,7 @@ These sources often contain information missed by mainstream coverage.
|
|
|
740
791
|
Take time to check each one - they frequently reveal unique details.
|
|
741
792
|
{% /description %}
|
|
742
793
|
|
|
743
|
-
{%
|
|
794
|
+
{% field kind="string" id="nndb_summary" label="NNDB Profile Summary" %}{% /field %}
|
|
744
795
|
|
|
745
796
|
{% instructions ref="nndb_summary" %}
|
|
746
797
|
NNDB (Notable Names Database) tracks: religion, politics, causes, sexual orientation, relationships.
|
|
@@ -748,7 +799,7 @@ Source: nndb.com - search for celebrity name.
|
|
|
748
799
|
Summarize key findings not covered elsewhere.
|
|
749
800
|
{% /instructions %}
|
|
750
801
|
|
|
751
|
-
{%
|
|
802
|
+
{% field kind="string" id="political_donations" label="Political Donation History" %}{% /field %}
|
|
752
803
|
|
|
753
804
|
{% instructions ref="political_donations" %}
|
|
754
805
|
Search FEC records for political contributions.
|
|
@@ -759,7 +810,7 @@ Sources:
|
|
|
759
810
|
- FEC.gov individual contributor search
|
|
760
811
|
{% /instructions %}
|
|
761
812
|
|
|
762
|
-
{%
|
|
813
|
+
{% field kind="string" id="behind_the_voice" label="Voice Acting Credits" %}{% /field %}
|
|
763
814
|
|
|
764
815
|
{% instructions ref="behind_the_voice" %}
|
|
765
816
|
For actors: voice acting work often overlooked.
|
|
@@ -767,21 +818,21 @@ Source: behindthevoiceactors.com
|
|
|
767
818
|
Format: # Voice credits | Notable roles
|
|
768
819
|
{% /instructions %}
|
|
769
820
|
|
|
770
|
-
{%
|
|
821
|
+
{% field kind="string" id="theater_credits" label="Theater/Broadway Credits" %}{% /field %}
|
|
771
822
|
|
|
772
823
|
{% instructions ref="theater_credits" %}
|
|
773
824
|
Stage work often overlooked in film star coverage.
|
|
774
825
|
Sources: Playbill archives (playbill.com), BroadwayWorld (broadwayworld.com), IBDB (Internet Broadway Database).
|
|
775
826
|
{% /instructions %}
|
|
776
827
|
|
|
777
|
-
{%
|
|
828
|
+
{% field kind="string" id="discography_music" label="Music/Discography (if applicable)" %}{% /field %}
|
|
778
829
|
|
|
779
830
|
{% instructions ref="discography_music" %}
|
|
780
831
|
For actor-musicians or musicians-turned-actors.
|
|
781
832
|
Source: Discogs.com, AllMusic.
|
|
782
833
|
{% /instructions %}
|
|
783
834
|
|
|
784
|
-
{%
|
|
835
|
+
{% field kind="string" id="wayback_findings" label="Historical Website/Social Media (Wayback Machine)" %}{% /field %}
|
|
785
836
|
|
|
786
837
|
{% instructions ref="wayback_findings" %}
|
|
787
838
|
Old website content, deleted social media posts, early career materials.
|
|
@@ -789,7 +840,7 @@ Source: web.archive.org - search for their old personal sites, early social medi
|
|
|
789
840
|
Example: "2005 MySpace page shows pre-fame persona, early demo recordings"
|
|
790
841
|
{% /instructions %}
|
|
791
842
|
|
|
792
|
-
{%
|
|
843
|
+
{% field kind="string" id="ancestry_findings" label="Ancestry/Family History" %}{% /field %}
|
|
793
844
|
|
|
794
845
|
{% instructions ref="ancestry_findings" %}
|
|
795
846
|
Notable genealogical findings.
|
|
@@ -797,7 +848,7 @@ Sources: Geni.com, FamilySearch.org, Ancestry (if publicly discussed).
|
|
|
797
848
|
Example: "Related to British royalty through maternal line (per Finding Your Roots appearance)"
|
|
798
849
|
{% /instructions %}
|
|
799
850
|
|
|
800
|
-
{%
|
|
851
|
+
{% field kind="string_list" id="specialized_sources_urls" label="Specialized Sources" %}{% /field %}
|
|
801
852
|
|
|
802
853
|
{% instructions ref="specialized_sources_urls" %}
|
|
803
854
|
URLs used as sources for this section. One URL per line.
|
|
@@ -811,14 +862,14 @@ URLs used as sources for this section. One URL per line.
|
|
|
811
862
|
Only fill if the subject is deceased.
|
|
812
863
|
{% /description %}
|
|
813
864
|
|
|
814
|
-
{%
|
|
865
|
+
{% field kind="string" id="find_a_grave" label="Find A Grave Entry" %}{% /field %}
|
|
815
866
|
|
|
816
867
|
{% instructions ref="find_a_grave" %}
|
|
817
868
|
Format: Memorial ID | Cemetery | Location | URL
|
|
818
869
|
Source: findagrave.com
|
|
819
870
|
{% /instructions %}
|
|
820
871
|
|
|
821
|
-
{%
|
|
872
|
+
{% field kind="string_list" id="obituary_sources" label="Notable Obituaries" %}{% /field %}
|
|
822
873
|
|
|
823
874
|
{% instructions ref="obituary_sources" %}
|
|
824
875
|
Major obituaries and tributes. One per line.
|
|
@@ -826,14 +877,14 @@ Format: Publication | Headline | URL
|
|
|
826
877
|
Example: "New York Times | 'Actor Who Defined a Generation' | nytimes.com/..."
|
|
827
878
|
{% /instructions %}
|
|
828
879
|
|
|
829
|
-
{%
|
|
880
|
+
{% field kind="string" id="legacy_assessment" label="Legacy Assessment" maxLength=1000 %}{% /field %}
|
|
830
881
|
|
|
831
882
|
{% instructions ref="legacy_assessment" %}
|
|
832
883
|
How is this person remembered? Cultural impact, ongoing influence.
|
|
833
884
|
Sources: Retrospective articles, academic assessments, AFI tributes.
|
|
834
885
|
{% /instructions %}
|
|
835
886
|
|
|
836
|
-
{%
|
|
887
|
+
{% field kind="string_list" id="deceased_specific_sources" label="Deceased Celebrity Sources" %}{% /field %}
|
|
837
888
|
|
|
838
889
|
{% instructions ref="deceased_specific_sources" %}
|
|
839
890
|
URLs used as sources for this section. One URL per line.
|
|
@@ -848,7 +899,7 @@ The "juicy details" section - interesting facts that make profiles memorable.
|
|
|
848
899
|
Sources: IMDb Trivia, interviews, biographies.
|
|
849
900
|
{% /description %}
|
|
850
901
|
|
|
851
|
-
{%
|
|
902
|
+
{% field kind="string_list" id="interesting_trivia" label="Interesting Trivia" %}{% /field %}
|
|
852
903
|
|
|
853
904
|
{% instructions ref="interesting_trivia" %}
|
|
854
905
|
Unusual, surprising, or lesser-known facts. One per line.
|
|
@@ -860,16 +911,20 @@ Source: IMDb Trivia section, interviews, biographies.
|
|
|
860
911
|
Prioritize: Surprising facts, near-misses on iconic roles, unusual skills, celebrity connections.
|
|
861
912
|
{% /instructions %}
|
|
862
913
|
|
|
863
|
-
{%
|
|
914
|
+
{% field kind="table" id="notable_quotes" label="Notable Quotes"
|
|
915
|
+
columnIds=["quote", "context_source"]
|
|
916
|
+
columnTypes=["string", "string"] %}
|
|
917
|
+
| Quote | Context/Source |
|
|
918
|
+
|-------|----------------|
|
|
919
|
+
{% /field %}
|
|
864
920
|
|
|
865
921
|
{% instructions ref="notable_quotes" %}
|
|
866
|
-
Memorable quotes by the celebrity.
|
|
867
|
-
|
|
868
|
-
Example: "I'd rather be hated for who I am than loved for who I'm not." - 2010 Vanity Fair interview
|
|
922
|
+
Memorable quotes by the celebrity.
|
|
923
|
+
Example: I'd rather be hated for who I am than loved for who I'm not. | 2010 Vanity Fair interview
|
|
869
924
|
Sources: IMDb Quotes, Brainy Quote, notable interviews.
|
|
870
925
|
{% /instructions %}
|
|
871
926
|
|
|
872
|
-
{%
|
|
927
|
+
{% field kind="string_list" id="trivia_quotes_sources" label="Trivia & Quotes Sources" %}{% /field %}
|
|
873
928
|
|
|
874
929
|
{% instructions ref="trivia_quotes_sources" %}
|
|
875
930
|
URLs used as sources for this section. One URL per line.
|
|
@@ -879,13 +934,13 @@ URLs used as sources for this section. One URL per line.
|
|
|
879
934
|
|
|
880
935
|
{% field-group id="research_metadata" title="Research Metadata" %}
|
|
881
936
|
|
|
882
|
-
{%
|
|
937
|
+
{% field kind="string" id="research_date" label="Research Date" required=true pattern="^\\d{4}-\\d{2}-\\d{2}$" %}{% /field %}
|
|
883
938
|
|
|
884
939
|
{% instructions ref="research_date" %}
|
|
885
940
|
Date research was conducted (YYYY-MM-DD). Critical for celebrity research as information changes rapidly.
|
|
886
941
|
{% /instructions %}
|
|
887
942
|
|
|
888
|
-
{%
|
|
943
|
+
{% field kind="string" id="research_limitations" label="Research Limitations & Notes" maxLength=2000 %}{% /field %}
|
|
889
944
|
|
|
890
945
|
{% instructions ref="research_limitations" %}
|
|
891
946
|
Note any limitations:
|
|
@@ -897,7 +952,7 @@ Note any limitations:
|
|
|
897
952
|
- Certain sections incomplete due to [reason]
|
|
898
953
|
{% /instructions %}
|
|
899
954
|
|
|
900
|
-
{%
|
|
955
|
+
{% field kind="string" id="confidence_assessment" label="Overall Research Confidence" %}{% /field %}
|
|
901
956
|
|
|
902
957
|
{% instructions ref="confidence_assessment" %}
|
|
903
958
|
Rate overall confidence: High / Medium / Low
|