# app.nblr.feed.post

> Published by [nblr.app](https://lexicon.garden/identity/did:plc:kgrcstzon7oaiy5myjfgiou6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.post/examples)

## Definitions

### `app.nblr.feed.post`

**Type**: `record`

Record containing a nblr post.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (uri) | No | The URI of the linked resource; a web URL or AT URI |
| `image` | `blob` | No | Optional image for the post |
| `title` | `string` | No | Optional title for the post |
| `createdAt` | `string` (datetime) | Yes |  |
| `aspectRatio` | `ref` → `#aspectRatio` | No | Approximate aspect ratio of the image (width:height). |
| `description` | `string` | No | Optional description for the post |

### `app.nblr.feed.post#aspectRatio`

**Type**: `object`

width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any given unit.

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

## Raw Schema

```json
{
  "id": "app.nblr.feed.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "uri",
            "description": "The URI of the linked resource; a web URL or AT URI"
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "maxSize": 1000000,
            "description": "Optional image for the post"
          },
          "title": {
            "type": "string",
            "maxLength": 640,
            "description": "Optional title for the post",
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "aspectRatio": {
            "ref": "#aspectRatio",
            "type": "ref",
            "description": "Approximate aspect ratio of the image (width:height)."
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "Optional description for the post",
            "maxGraphemes": 256
          }
        }
      },
      "description": "Record containing a nblr post."
    },
    "aspectRatio": {
      "type": "object",
      "required": [
        "width",
        "height"
      ],
      "properties": {
        "width": {
          "type": "integer",
          "minimum": 1
        },
        "height": {
          "type": "integer",
          "minimum": 1
        }
      },
      "description": "width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any given unit."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
