{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Question schema", "type": "object", "properties": { "id": { "type": "integer", "description": "Question ID" }, "question": { "type": "string", "description": "The question" } }, "required": ["id", "question"] }