# app.tempomusic.embed.defs

> Published by [lexicons.tempomusic.fan](https://lexicon.garden/identity/did:plc:pxsuqmultto34oks44m2lgxm)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.embed.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.embed.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.embed.defs/examples)

## Definitions

### `app.tempomusic.embed.defs#aspectRatio`

**Type**: `object`

Width/height ratio of an image or video. Used by clients to reserve layout space before media loads and to choose appropriate display dimensions.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `width` | `integer` | Yes |  |
| `height` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "app.tempomusic.embed.defs",
  "defs": {
    "aspectRatio": {
      "type": "object",
      "required": [
        "width",
        "height"
      ],
      "properties": {
        "width": {
          "type": "integer",
          "minimum": 1
        },
        "height": {
          "type": "integer",
          "minimum": 1
        }
      },
      "description": "Width/height ratio of an image or video. Used by clients to reserve layout space before media loads and to choose appropriate display dimensions."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
