# is.logue.block.iframe

> Published by [logue.is](https://lexicon.garden/identity/did:plc:6xpq2upvl7j6p3ct6rgbb4pd)

## Description

Embedded content via iframe (e.g. YouTube, Bandcamp, etc.)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.iframe)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.iframe/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.iframe/examples)

## Definitions

### `is.logue.block.iframe`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | The URL of the content to embed |
| `height` | `integer` | No | Height of the embed in pixels |

## Raw Schema

```json
{
  "id": "is.logue.block.iframe",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "description": "The URL of the content to embed"
        },
        "height": {
          "type": "integer",
          "maximum": 1600,
          "minimum": 16,
          "description": "Height of the embed in pixels"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Embedded content via iframe (e.g. YouTube, Bandcamp, etc.)"
}
```
