{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MeetingRecordingArchivePollRespondent", "title": "MeetingRecordingArchivePollRespondent", "type": "object", "properties": { "correlationId": { "type": "number", "example": 28208023, "description": "An internal ID that is associated with the respondent's each join." }, "displayName": { "type": "string", "example": "Alex Green", "description": "Display name for the poll respondent." }, "email": { "type": "string", "example": "alex.green@example.com", "description": "Email address for the poll respondent." }, "answers": { "type": "array", "items": { "type": "string" }, "description": "An array of answers to the question." } } }