{
    "type": "object",
    "properties": {
        "metaData": {
            "type": "object",
            "properties": {
                "id": {
                    "type": "string"
                },
                "url": {
                    "type": "string"
                },
                "title": {
                    "type": "string"
                },
                "scheduled": {
                    "type": "string"
                },
                "started": {
                    "type": "string"
                },
                "duration": {
                    "type": "integer"
                },
                "primaryUserId": {
                    "type": "string"
                },
                "direction": {
                    "type": "string"
                },
                "system": {
                    "type": "string"
                },
                "scope": {
                    "type": "string"
                },
                "media": {
                    "type": "string"
                },
                "language": {
                    "type": "string"
                },
                "workspaceId": {
                    "type": "string"
                },
                "customData": {
                    "type": "null"
                },
                "purpose": {
                    "type": "null"
                },
                "meetingUrl": {
                    "type": "string"
                },
                "isPrivate": {
                    "type": "boolean"
                }
            },
            "required": [
                "id",
                "url",
                "title",
                "scheduled",
                "started",
                "duration",
                "primaryUserId",
                "direction",
                "system",
                "scope",
                "media",
                "language",
                "workspaceId",
                "sdrDisposition",
                "clientUniqueId",
                "customData",
                "purpose",
                "meetingUrl",
                "isPrivate",
                "calendarEventId"
            ]
        },
        "transcript": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "speakerId": {
                        "type": "string"
                    },
                    "sentences": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "start": {
                                    "type": "integer"
                                },
                                "end": {
                                    "type": "integer"
                                },
                                "text": {
                                    "type": "string"
                                }
                            },
                            "required": [
                                "start",
                                "end",
                                "text"
                            ]
                        }
                    }
                },
                "required": [
                    "speakerId",
                    "topic",
                    "sentences"
                ]
            }
        },
        "parties": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "id": {
                        "type": "string"
                    },
                    "emailAddress": {
                        "type": "string"
                    },
                    "name": {
                        "type": "string"
                    },
                    "title": {
                        "type": "string"
                    },
                    "userId": {
                        "type": "string"
                    },
                    "affiliation": {
                        "type": "string"
                    },
                    "phoneNumber": {
                        "type": "string"
                    },
                    "methods": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    }
                },
                "required": [
                    "id",
                    "speakerId",
                    "affiliation",
                    "methods"
                ]
            }
        }
    },
    "required": [
        "metaData"
    ],
    "version": 1
}
