{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReassignMeetingResponseObject", "title": "ReassignMeetingResponseObject", "type": "object", "required": [ "meetingId", "httpStatus" ], "properties": { "meetingId": { "type": "string", "example": "560d7b784f5143e3be2fc3064a5c5888", "description": "Unique identifier for the meeting to be reassigned host." }, "httpStatus": { "type": "string", "example": "404", "description": "HTTP status code for the meeting reassignment result." }, "message": { "type": "string", "example": "The requested resource could not be found.", "description": "General message for the host reassignment of `meetingId` if it fails." }, "errors": { "type": "array", "items": { "$ref": "#/components/schemas/ReassignMeetingErrorDescriptionObject" }, "description": "Detailed descriptions for the host reassignment of `meetingId` if it fails." } } }