@observertc/schemas
Version:
ObserveRTC Library for Schemas
108 lines (107 loc) • 2.88 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.schema = void 0;
exports.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
}
]
};