# place.stream.broadcast.syndication

> Published by [did:web:longos.iameli.link](https://lexicon.garden/identity/did:web:longos.iameli.link)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.broadcast.syndication)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.broadcast.syndication/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.broadcast.syndication/examples)

## Definitions

### `place.stream.broadcast.syndication`

**Type**: `record`

Record created by a Streamplace broadcaster to indicate that they will be replicating a livestream. NYI

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `streamer` | `string` (did) | Yes | DID of the streamer whose livestream is being replicated |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this syndication was created. |
| `broadcaster` | `string` (did) | Yes | DID of the Streamplace broadcaster that will be replicating the livestream |

## Raw Schema

```json
{
  "id": "place.stream.broadcast.syndication",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "broadcaster",
          "streamer",
          "createdAt"
        ],
        "properties": {
          "streamer": {
            "type": "string",
            "format": "did",
            "description": "DID of the streamer whose livestream is being replicated"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this syndication was created."
          },
          "broadcaster": {
            "type": "string",
            "format": "did",
            "description": "DID of the Streamplace broadcaster that will be replicating the livestream"
          }
        }
      },
      "description": "Record created by a Streamplace broadcaster to indicate that they will be replicating a livestream. NYI"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
