{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ThreadRealtimeSdpNotification",
  "description": "EXPERIMENTAL - emitted with the remote SDP for a WebRTC realtime session.",
  "type": "object",
  "required": [
    "sdp",
    "threadId"
  ],
  "properties": {
    "sdp": {
      "type": "string"
    },
    "threadId": {
      "type": "string"
    }
  }
}