{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "MeetingSummaryDto", "type": "object", "properties": { "id": { "type": "string" }, "start": { "type": "string" }, "end": { "type": "string" }, "createdAt": { "type": "string" }, "authorId": { "type": "string" }, "title": { "type": "string" }, "identifier": { "type": "string" }, "organizer": { "type": "string" }, "organizerId": { "type": "string" }, "attachmentIds": { "type": "array" }, "relatedSymbols": { "type": "array" }, "locations": { "type": "array" }, "attendees": { "type": "array" }, "customFieldValues": { "type": "array" } } }