Skip to content

place.stream.live.teleport

Lexicon Version: 1

Type: record

Record defining a ‘teleport’, that is active during a certain time.

Record Key: tid

Record Properties:

NameTypeReq’dDescriptionConstraints
streamerstringThe DID of the streamer to teleport to.Format: did
startsAtstringThe time the teleport becomes active.Format: datetime
durationSecondsintegerThe time limit in seconds for the teleport. If not set, the teleport is permanent. Must be at least 60 seconds, and no more than 32,400 seconds (9 hours).Min: 60
Max: 32400

{
"lexicon": 1,
"id": "place.stream.live.teleport",
"defs": {
"main": {
"type": "record",
"key": "tid",
"description": "Record defining a 'teleport', that is active during a certain time.",
"record": {
"type": "object",
"required": ["streamer", "startsAt"],
"properties": {
"streamer": {
"type": "string",
"format": "did",
"description": "The DID of the streamer to teleport to."
},
"startsAt": {
"type": "string",
"format": "datetime",
"description": "The time the teleport becomes active."
},
"durationSeconds": {
"type": "integer",
"description": "The time limit in seconds for the teleport. If not set, the teleport is permanent. Must be at least 60 seconds, and no more than 32,400 seconds (9 hours).",
"minimum": 60,
"maximum": 32400
}
}
}
}
}
}