# place.stream.multistream.target

> Published by [did:web:stream.place](https://lexicon.garden/identity/did:web:stream.place)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.multistream.target)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.multistream.target/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.multistream.target/examples)

## Definitions

### `place.stream.multistream.target`

**Type**: `record`

An external server for rebroadcasting a Streamplace stream

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | The rtmp:// or rtmps:// url of the target server. |
| `name` | `string` | No | A user-friendly name for this target. |
| `active` | `boolean` | Yes | Whether this target is currently active. |
| `createdAt` | `string` (datetime) | Yes | When this target was created. |

## Raw Schema

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