coop.hypha.spores.content.image

hypha.coop

Documentation

An image uploaded to the garden.

main record

An image uploaded to the garden.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Client-declared timestamp when the image was uploaded.

embed unknown Optional

Optional Bluesky-compatible image embed payload.

image blob Required

The image blob.

maxSize: 10.0 MB
title string Optional

Optional title for the image.

maxLength: 2000 bytesmaxGraphemes: 200 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "image",
      "createdAt"
    ],
    "properties": {
      "embed": {
        "type": "unknown",
        "description": "Optional Bluesky-compatible image embed payload."
      },
      "image": {
        "type": "blob",
        "accept": [
          "image/*"
        ],
        "maxSize": 10000000,
        "description": "The image blob."
      },
      "title": {
        "type": "string",
        "maxLength": 2000,
        "description": "Optional title for the image.",
        "maxGraphemes": 200
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when the image was uploaded."
      }
    }
  },
  "description": "An image uploaded to the garden."
}

Lexicon Garden

@