UNPKG

@observertc/schemas

Version:
104 lines 2.2 kB
export const schema = { "type": "record", "name": "ClientExtensionReport", "namespace": "org.observertc.schemas.reports", "doc": "A Report created for Extended provided arbitrary data.", "fields": [ { "name": "serviceId", "doc": "The unique identifier of the service", "type": "string" }, { "name": "mediaUnitId", "doc": "The media unit id the report belongs to", "type": [ "null", "string" ], "default": null }, { "name": "marker", "doc": "The marker the originated sample is reported with", "type": [ "null", "string" ], "default": null }, { "name": "timestamp", "doc": "The timestamp when the corresponded data is generated for the report (UTC Epoch in ms)", "type": "long" }, { "name": "callId", "doc": "The generated unique identifier of the call", "type": [ "null", "string" ], "default": null }, { "name": "roomId", "doc": "webrtc app provided room id", "type": [ "null", "string" ], "default": null }, { "name": "clientId", "doc": "The generated unique identifier of the client", "type": [ "null", "string" ], "default": null }, { "name": "userId", "doc": "webrtc app provided user identifier", "type": [ "null", "string" ], "default": null }, { "name": "peerConnectionId", "doc": "The unique identifier of the peer connection", "type": [ "null", "string" ], "default": null }, { "name": "sampleSeq", "doc": "The sequence number of the sample the event may related to", "type": [ "null", "int" ], "default": null }, { "name": "extensionType", "doc": "The name of the event", "type": "string" }, { "name": "payload", "doc": "the human readable message of the event", "type": [ "null", "string" ], "default": null } ] }