net.atchan.embed.image

atchan.net

Documentation

main object

No description available.

Properties

alt string Required

Alt text description of the image for accessibility. May be empty.

maxLength: 20000 bytesmaxGraphemes: 2000 graphemes
filename string Required

Name of the file as uploaded

maxLength: 2600 bytesmaxGraphemes: 260 graphemes
image blob Required

The image represented as bytes

maxSize: 26.2 MB
View raw schema
{
  "type": "object",
  "required": [
    "filename",
    "image",
    "alt"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxLength": 20000,
      "description": "Alt text description of the image for accessibility. May be empty.",
      "maxGraphemes": 2000
    },
    "image": {
      "type": "blob",
      "accept": [
        "image/*"
      ],
      "maxSize": 26214400,
      "description": "The image represented as bytes"
    },
    "filename": {
      "type": "string",
      "maxLength": 2600,
      "description": "Name of the file as uploaded",
      "maxGraphemes": 260
    },
    "aspectRatio": {
      "ref": "net.atchan.embed.defs#aspectRatio",
      "type": "ref"
    }
  }
}

Lexicon Garden

@