{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Training", "required": [ "title", "organizer", "sessions", "type" ], "properties": { "title": { "type": "string" }, "organizer": { "type": "string", "format": "uuid" }, "sessions": { "$ref": "#/components/schemas/ArrayOfIds" }, "type": { "type": "string" } }, "type": "object", "xml": { "name": "training" } }