app.nblr.feed.post

nblr.app

Documentation

Record containing a nblr post.

main record

Record containing a nblr post.

Record Key tid Timestamp-based ID

Properties

aspectRatio ref #aspectRatio Optional

Approximate aspect ratio of the image (width:height).

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

Optional description for the post

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
image blob Optional

Optional image for the post

maxSize: 1.0 MB
title string Optional

Optional title for the post

maxLength: 640 bytesmaxGraphemes: 64 graphemes
uri string uri Optional

The URI of the linked resource; a web URL or AT URI

View raw schema
{
  "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 object

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

Properties

height integer Required

No description available.

minimum: 1
width integer Required

No description available.

minimum: 1
View raw schema
{
  "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."
}

Lexicon Garden

@