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

19 lines
547 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"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"]
}