"description": "Sent by either party to signal their termination of the call. This can be sent either once the call has has been established or before to abort the call.",
"allOf": [{
"$ref": "core#/definitions/room_event"
}],
@ -9,10 +10,12 @@
"type": "object",
"properties": {
"call_id": {
"type": "string"
"type": "string",
"description": "The ID of the call this event relates to."
},
"version": {
"type": "number"
"type": "integer",
"description": "The version of the VoIP specification this message adheres to. This specification is version 0."
"description": "The type of session description. Must be 'offer'."
},
"sdp": {
"type": "string"
"type": "string",
"description": "The SDP text of the session description."
}
},
"required": ["type", "sdp"]
},
"version": {
"type": "number"
"type": "integer",
"description": "The version of the VoIP specification this message adheres to. This specification is version 0."
},
"lifetime": {
"type": "integer",
"description": "The time in milliseconds that the invite is valid for. Once the invite age exceeds this value, clients should discard it. They should also no longer show the call as awaiting an answer in the UI."