@observertc/schemas
Version:
ObserveRTC Library for Schemas
127 lines • 2.65 kB
text/typescript
export const schema = {
"type": "record",
"name": "ObserverEventReport",
"namespace": "org.observertc.schemas.reports",
"doc": "A report created for observer generated events",
"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": "string"
},
{
"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": "sampleTimestamp",
"doc": "The timestamp of the sample the event related to",
"type": [
"null",
"long"
],
"default": null
},
{
"name": "sampleSeq",
"doc": "The sequence number of the sample the event may related to",
"type": [
"null",
"int"
],
"default": null
},
{
"name": "name",
"doc": "The name of the event",
"type": "string"
},
{
"name": "message",
"doc": "the human readable message of the event",
"type": [
"null",
"string"
],
"default": null
},
{
"name": "value",
"doc": "the value of the event",
"type": [
"null",
"string"
],
"default": null
},
{
"name": "attachments",
"doc": "attachment the event may created with",
"type": [
"null",
"string"
],
"default": null
}
]
}