Build custom Jeopardy games.
- Fork this repo.
- Copy from
template.json
. - Follow this format for your file name:
<name><yyyy><mm><dd>.json
. Example:dickson20200501.json
. - Fill in your clues and answers.
- Create a pull request. Your commits should automatically trigger a run of my validation script.
The schema is:
{
single: Array<Category>;
double: Array<Category>;
final: Category;
}
interface Category {
// Name of the category.
name: string;
// A comment for the category.
comment: string;
// An array of clues.
clues: Array<Clue>;
}
interface Clue {
value: number;
isDailyDouble: boolean;
text: string;
// All answers should be placed here, including alternative answers.
answer: string;
// Optional field to add notes for the host. Players will never see the
// content here. Useful for adding background info, additional trivia, etc.
hostNote?: string;
}