gsa-process-models/examples/1-basic-concepts/1-3-scripts/trivia-quiz-schema.json

19 lines
547 B
JSON
Raw Normal View History

2024-04-08 21:17:40 +00:00
{
"title": "Trivia Quiz! ",
"description": "A quick set of questions with multiple choice answers",
"properties": {
"flag_stars": {
"type": "number",
"title": "How many stars are on the European Union Flag? "
},
"longest_river": {
"type": "string",
"title": "What is the name of the worlds longest river?"
},
"woman_nobel": {
"type": "string",
"title": "Who, in 1903, was the first woman to win a Nobel Prize?"
}
},
"required": ["flag_stars","longest_river","woman_nobel"]
}