{ "title": "CreateAppointment", "type": "object", "properties": { "@type": { "type": "string" }, "startTime": { "type": "string", "format": "date-time" }, "endTime": { "type": "string", "format": "date-time" }, "participants": { "type": "array", "minItems": 2, "items": { "type": "object", "properties": { "@type": { "type": "string" }, "user": { "type": "object", "properties": { "@id": { "type": "string", "minLength": 1 }, "@type": { "type": "string", "enum": ["Worker", "ServiceUser"] } }, "required": ["@id", "@type"] }, "host": { "type": "boolean", "default": false } }, "required": ["@type", "user"] } }, "description": { type: "string", minLength: 1, }, "applicationServiceGroup": { type: "object", properties: { "@id": { type: "string" }, "@type": { type: "string", enum: ["ApplicationServiceGroup"] }, }, required: ["@id", "@type"], }, "application": { type: "object", properties: { "@id": { type: "string", minLength: 1 }, "@type": { type: "string", enum: ["Application"] }, }, required: ["@id", "@type"], }, }, "required": ["@type", "startTime", "endTime", "participants"] }