# place.stream.ingest.defs

> 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.ingest.defs)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.ingest.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.ingest.defs/examples)

## Definitions

### `place.stream.ingest.defs#ingest`

**Type**: `object`

An ingest URL for a Streamplace station.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | The URL of the ingest endpoint. |
| `type` | `string` | Yes | The type of ingest endpoint, currently 'rtmp' and 'whip' are supported. |

## Raw Schema

```json
{
  "id": "place.stream.ingest.defs",
  "defs": {
    "ingest": {
      "type": "object",
      "required": [
        "type",
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "description": "The URL of the ingest endpoint."
        },
        "type": {
          "type": "string",
          "description": "The type of ingest endpoint, currently 'rtmp' and 'whip' are supported."
        }
      },
      "description": "An ingest URL for a Streamplace station."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
