blog.pckt.gallery

pckt.blog

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

caption string Optional

Optional caption for the entire gallery

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
layout string Optional

Layout style for rendering the gallery (e.g. grid, carousel, masonry, list)

maxLength: 50 bytes
title string Optional

Optional title for the gallery

maxLength: 200 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "images"
    ],
    "properties": {
      "title": {
        "type": "string",
        "maxLength": 200,
        "description": "Optional title for the gallery"
      },
      "images": {
        "type": "array",
        "items": {
          "ref": "blog.pckt.block.image#imageAttrs",
          "type": "ref"
        },
        "maxLength": 50,
        "minLength": 1,
        "description": "Array of image blocks in display order"
      },
      "layout": {
        "type": "string",
        "maxLength": 50,
        "description": "Layout style for rendering the gallery (e.g. grid, carousel, masonry, list)"
      },
      "caption": {
        "type": "string",
        "maxLength": 3000,
        "description": "Optional caption for the entire gallery",
        "maxGraphemes": 300
      }
    }
  }
}

Lexicon Garden

@