is.logue.block.image

lefelys.com

Documentation

main object

No description available.

Properties

alt string Optional

Alt text description of the image, for accessibility.

aspectRatio ref #aspectRatio Required

No description available.

image blob Required

No description available.

maxSize: 2.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "image",
    "aspectRatio"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "description": "Alt text description of the image, for accessibility."
    },
    "image": {
      "type": "blob",
      "accept": [
        "image/*"
      ],
      "maxSize": 2000000
    },
    "aspectRatio": {
      "ref": "#aspectRatio",
      "type": "ref"
    }
  }
}
aspectRatio object

width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any given unit.

Properties

height integer Required

No description available.

minimum: 1
width integer Required

No description available.

minimum: 1
View raw schema
{
  "type": "object",
  "required": [
    "width",
    "height"
  ],
  "properties": {
    "width": {
      "type": "integer",
      "minimum": 1
    },
    "height": {
      "type": "integer",
      "minimum": 1
    }
  },
  "description": "width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any given unit."
}

Lexicon Garden

@