garden.lexicon.nourishing-earthworm.photoProject

sten.laugh.town View official

Documentation

A photography collection: its /photo/<slug> gallery plus its cover tile on the /photo index grid.

main record

A photography collection: its /photo/<slug> gallery plus its cover tile on the /photo index grid.

Record Key tid Timestamp-based ID

Properties

comingSoon boolean Optional

No description available.

Default: false
cover string Optional

No description available.

coverImage object Optional

No description available.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

deleted boolean Optional

No description available.

Default: false
images array of object Optional

No description available.

note string Optional

No description available.

maxGraphemes: 300 graphemes
order integer Optional

No description available.

slug string Required

URL + gallery-folder id, derived from the title.

maxLength: 128 bytes
title string Required

No description available.

maxGraphemes: 300 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "slug",
      "title",
      "createdAt"
    ],
    "properties": {
      "note": {
        "type": "string",
        "maxGraphemes": 300
      },
      "slug": {
        "type": "string",
        "maxLength": 128,
        "description": "URL + gallery-folder id, derived from the title."
      },
      "cover": {
        "type": "string"
      },
      "order": {
        "type": "integer"
      },
      "title": {
        "type": "string",
        "maxGraphemes": 300
      },
      "images": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "image"
          ],
          "properties": {
            "alt": {
              "type": "string",
              "maxGraphemes": 500
            },
            "image": {
              "type": "blob",
              "accept": [
                "image/webp",
                "image/jpeg",
                "image/png"
              ],
              "maxSize": 6000000
            }
          }
        }
      },
      "deleted": {
        "type": "boolean",
        "default": false
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "comingSoon": {
        "type": "boolean",
        "default": false
      },
      "coverImage": {
        "type": "object",
        "required": [
          "image"
        ],
        "properties": {
          "alt": {
            "type": "string",
            "maxGraphemes": 500
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/webp",
              "image/jpeg",
              "image/png"
            ],
            "maxSize": 6000000
          }
        }
      }
    }
  },
  "description": "A photography collection: its /photo/<slug> gallery plus its cover tile on the /photo index grid."
}

Lexicon Garden

@