{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AnswerObject", "title": "AnswerObject", "type": "object", "properties": { "displayName": { "type": "string", "example": "John Andersen", "description": "The name of the person who answered the question." }, "email": { "type": "string", "example": "john.andersen@example.com", "description": "The email of the person who answered the question." }, "personId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8xYTY5MmE2Mi00MTNmLTRjYWEtYjdkOS0wYzg0ZDZmMDdlNzY", "description": "The ID of the person who answered the question. Only present for authenticated users." }, "answer": { "type": "array", "items": { "type": "string", "example": "Fine, thank you." }, "description": "The content of the answer." }, "answered": { "type": "boolean", "example": true, "description": "Whether or not the question was answered." } } }