Skip to content

place.stream.multistream.target

Lexicon Version: 1

Type: record

An external server for rebroadcasting a Streamplace stream

Record Key: tid

Record Properties:

NameTypeReq’dDescriptionConstraints
urlstringThe rtmp:// or rtmps:// url of the target server.Format: uri
activebooleanWhether this target is currently active.
createdAtstringWhen this target was created.Format: datetime
namestringA user-friendly name for this target.Max Length: 100

{
"lexicon": 1,
"id": "place.stream.multistream.target",
"defs": {
"main": {
"type": "record",
"key": "tid",
"description": "An external server for rebroadcasting a Streamplace stream",
"record": {
"required": ["url", "active", "createdAt"],
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "The rtmp:// or rtmps:// url of the target server."
},
"active": {
"type": "boolean",
"description": "Whether this target is currently active."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this target was created."
},
"name": {
"type": "string",
"maxLength": 100,
"description": "A user-friendly name for this target."
}
}
}
}
}
}