{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MeetingAttendee", "title": "MeetingAttendee", "type": "object", "properties": { "emailAddress": { "type": "string", "format": "email", "description": "The attendee's email address." }, "name": { "type": "string", "description": "The attendee's display name." }, "responseStatus": { "type": "string", "enum": [ "Accepted", "Declined", "Tentative", "NeedsAction" ], "description": "The attendee's RSVP response status." } } }