is.currents.content.defs

currents.is

Documentation

attribution object

Optional provenance metadata for an image content item.

Properties

credit string Optional

No description available.

maxLength: 500 bytes
license string Optional

No description available.

maxLength: 500 bytes
url string uri Optional

A valid URI.

maxLength: 2000 bytes
View raw schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "maxLength": 2000
    },
    "credit": {
      "type": "string",
      "maxLength": 500
    },
    "license": {
      "type": "string",
      "maxLength": 500
    }
  },
  "description": "Optional provenance metadata for an image content item."
}
imageView object

No description available.

Properties

attribution ref #attribution Optional

No description available.

blobCid string cid Required

CID of the saved image blob.

dominantColor string Optional

Hex color code of the most dominant color, for placeholder rendering. Absent if unknown.

height integer Optional

Height of the image in pixels. Absent if unknown.

imageUrl string uri Required

CDN URL of the image, resolved server-side from the blob reference.

width integer Optional

Width of the image in pixels. Absent if unknown.

View raw schema
{
  "type": "object",
  "required": [
    "blobCid",
    "imageUrl"
  ],
  "properties": {
    "width": {
      "type": "integer",
      "description": "Width of the image in pixels. Absent if unknown."
    },
    "height": {
      "type": "integer",
      "description": "Height of the image in pixels. Absent if unknown."
    },
    "blobCid": {
      "type": "string",
      "format": "cid",
      "description": "CID of the saved image blob."
    },
    "imageUrl": {
      "type": "string",
      "format": "uri",
      "description": "CDN URL of the image, resolved server-side from the blob reference."
    },
    "attribution": {
      "ref": "#attribution",
      "type": "ref"
    },
    "dominantColor": {
      "type": "string",
      "description": "Hex color code of the most dominant color, for placeholder rendering. Absent if unknown."
    }
  }
}

Lexicon Garden

@