You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extend data/sources/quotinator-curated.json (and the general import format) to support conversation definitions alongside quotes. The seeder must handle the extended format when importing from any source file that includes these sections.
Source files that contain only a top-level array ([...]) remain valid — they are treated as { "quotes": [...] } with no conversations, stage directions, or sound cues. The seeder detects the shape and handles both.
Seeder changes
Parse stageDirections, soundCues, and conversations sections when present.
Purpose
Extend
data/sources/quotinator-curated.json(and the general import format) to support conversation definitions alongside quotes. The seeder must handle the extended format when importing from any source file that includes these sections.Extended format
{ "quotes": [ ...existing canonical schema... ], "stageDirections": [ { "id": "uuid", "text": "[EXT. AIRPLANE - COCKPIT]", "imageUrl": null, "translations": { "nl": { "text": "[EXT. VLIEGTUIG - COCKPIT]" } } } ], "soundCues": [ { "id": "uuid", "text": "[awkward silence]", "soundFileUrl": null, "imageUrl": null, "translations": { "nl": { "text": "[pijnlijke stilte]" } } } ], "conversations": [ { "id": "uuid", "description": null, "lines": [ { "order": 1, "type": "quote", "quoteId": "..." }, { "order": 2, "type": "sound_cue", "soundCueId": "..." }, { "order": 3, "type": "quote", "quoteId": "..." } ] } ] }Backwards compatibility
Source files that contain only a top-level array (
[...]) remain valid — they are treated as{ "quotes": [...] }with no conversations, stage directions, or sound cues. The seeder detects the shape and handles both.Seeder changes
stageDirections,soundCues, andconversationssections when present.ImportBatchIdas the quotes from the same file.conversationsare inserted after allquotes,stageDirections, andsoundCuesfrom the file are committed (FK constraint order).First use
The Airplane! conversation is the first entry:
quotinator-curated.json(Ted Striker / Dr. Rumack)quotinator-curated.jsonmust be migrated from a flat array to the extended object format as part of this issue.Dependencies