Skip to content

place.stream.live.viewerCount

Lexicon Version: 1

Type: record

Current viewer count for a livestream on a particular server. Record keys are streamer_did::server_did by convention.

Record Key: any

Record Properties:

NameTypeReq’dDescriptionConstraints
streamerstringThe DID of the streamer to teleport to.Format: did
serverstringThe DID of the server to get the view count for.Format: did
countintegerThe current view count for the livestream.
updatedAtstringThe time the view count was last updated.Format: datetime

{
"lexicon": 1,
"id": "place.stream.live.viewerCount",
"defs": {
"main": {
"type": "record",
"key": "any",
"description": "Current viewer count for a livestream on a particular server. Record keys are streamer_did::server_did by convention.",
"record": {
"type": "object",
"required": ["streamer", "server", "count"],
"properties": {
"streamer": {
"type": "string",
"format": "did",
"description": "The DID of the streamer to teleport to."
},
"server": {
"type": "string",
"format": "did",
"description": "The DID of the server to get the view count for."
},
"count": {
"type": "integer",
"description": "The current view count for the livestream."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "The time the view count was last updated."
}
}
}
}
}
}