{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Quiz", "required": [ "quizId", "quizTitle", "contentItemId", "parentCourseIds" ], "properties": { "quizId": { "type": "string", "format": "uuid" }, "quizTitle": { "type": "string" }, "contentItemId": { "type": "string", "format": "uuid" }, "parentCourseIds": { "$ref": "#/components/schemas/ArrayOfIds" } }, "type": "object", "xml": { "name": "result", "wrapped": true } }