pics.pixl.image

pixl.pics

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

alt string Required

Alt text for the image.

maxLength: 20000 bytesmaxGraphemes: 2000 graphemes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

image blob Required

The original image file.

maxSize: 50.0 MB
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "image",
      "alt",
      "createdAt"
    ],
    "properties": {
      "alt": {
        "type": "string",
        "maxLength": 20000,
        "description": "Alt text for the image.",
        "maxGraphemes": 2000
      },
      "image": {
        "type": "blob",
        "accept": [
          "image/jpeg",
          "image/png",
          "image/webp",
          "image/gif",
          "image/avif",
          "image/heic"
        ],
        "maxSize": 50000000,
        "description": "The original image file."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  }
}

Lexicon Garden

@