place.stream.broadcast.getBroadcaster
Lexicon Version: 1
Definitions
Section titled “Definitions”Type: query
Get information about a Streamplace broadcaster.
Parameters: (None defined)
Output:
- Encoding:
application/json - Schema:
Schema Type: object
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
broadcaster | string | ✅ | DID of the Streamplace broadcaster to which this server belongs | Format: did |
server | string | ❌ | DID of this particular Streamplace server | Format: did |
admins | Array of string | ❌ | Array of DIDs authorized as admins |
Lexicon Source
Section titled “Lexicon Source”{ "lexicon": 1, "id": "place.stream.broadcast.getBroadcaster", "defs": { "main": { "type": "query", "description": "Get information about a Streamplace broadcaster.", "parameters": { "type": "params", "required": [], "properties": {} }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["broadcaster"], "properties": { "broadcaster": { "type": "string", "format": "did", "description": "DID of the Streamplace broadcaster to which this server belongs" }, "server": { "type": "string", "format": "did", "description": "DID of this particular Streamplace server" }, "admins": { "type": "array", "items": { "type": "string", "format": "did" }, "description": "Array of DIDs authorized as admins" } } } }, "errors": [] } }}