{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TrainingSession", "required": [ "id", "title", "startTime", "duration", "dayIds" ], "properties": { "id": { "type": "string", "format": "uuid" }, "title": { "type": "string" }, "startTime": { "type": "string", "format": "datetime" }, "duration": { "type": "integer" }, "instructor": { "type": "string" }, "dayIds": { "$ref": "#/components/schemas/ArrayOfIds" } }, "type": "object", "xml": { "name": "trainingSession" } }