{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CreateMeetingDto", "type": "object", "properties": { "title": { "type": "string" }, "identifier": { "type": "string" }, "start": { "type": "string" }, "end": { "type": "string" }, "locations": { "type": "array" }, "organizer": { "type": "string" }, "organizerId": { "type": "string" }, "attendees": { "type": "array" }, "alertAttendees": { "type": "boolean" }, "alertAuthor": { "type": "boolean" }, "relatedContacts": { "type": "array" }, "relatedSymbols": { "type": "array" }, "customFieldValues": { "type": "array" } } }