images_image_variants

Object specifying available variants for an image.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-images-image-variants-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/images_image_variants",
  "title": "images_image_variants",
  "description": "Object specifying available variants for an image.",
  "example": [
    "https://imagedelivery.net/MTt4OTd0b0w5aj/107b9558-dd06-4bbd-5fef-9c2c16bb7900/thumbnail",
    "https://imagedelivery.net/MTt4OTd0b0w5aj/107b9558-dd06-4bbd-5fef-9c2c16bb7900/hero",
    "https://imagedelivery.net/MTt4OTd0b0w5aj/107b9558-dd06-4bbd-5fef-9c2c16bb7900/original"
  ],
  "items": {
    "anyOf": [
      {
        "$ref": "#/components/schemas/images_image_thumbnail_url"
      },
      {
        "$ref": "#/components/schemas/images_image_hero_url"
      },
      {
        "$ref": "#/components/schemas/images_image_original_url"
      }
    ]
  },
  "readOnly": true,
  "type": "array"
}