# place.stream.live.teleport

> 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.live.teleport)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.live.teleport/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.live.teleport/examples)

## Definitions

### `place.stream.live.teleport`

**Type**: `record`

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

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `startsAt` | `string` (datetime) | Yes | The time the teleport becomes active. |
| `streamer` | `string` (did) | Yes | The DID of the streamer to teleport to. |
| `durationSeconds` | `integer` | No | 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). |

## Raw Schema

```json
{
  "id": "place.stream.live.teleport",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "streamer",
          "startsAt"
        ],
        "properties": {
          "startsAt": {
            "type": "string",
            "format": "datetime",
            "description": "The time the teleport becomes active."
          },
          "streamer": {
            "type": "string",
            "format": "did",
            "description": "The DID of the streamer to teleport to."
          },
          "durationSeconds": {
            "type": "integer",
            "maximum": 32400,
            "minimum": 60,
            "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)."
          }
        }
      },
      "description": "Record defining a 'teleport', that is active during a certain time."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
