Image Display Url

Description

An image display URL. All properties are optional and should not be relied upon as always available.

Properties

Property Description
extraLarge nullable

A URL for an extra-large-sized version of the image.

extraLarge2 nullable

A URL for an extra-large-2-sized version of the image.

extraLarge3 nullable

A URL for an extra-large-3-sized version of the image.

large nullable

A URL for a large-sized version of the image.

medium nullable

A URL for a medium-sized version of the image.

mediumLarge nullable

A URL for a medium-to-large-sized version of the image.

original nullable

A URL for an original version of the image.

small nullable

A URL for a small-sized version of the image.

thumb nullable

A URL for a thumbnail-sized version of the image.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "An image display URL. All properties are optional and should not be\nrelied upon as always available.",
  "example": {
    "large": "https://example.com/98f3a6c.jpg",
    "thumb": "https://example.com/e7e2797.jpg"
  },
  "properties": {
    "extraLarge": {
      "description": "A URL for an extra-large-sized version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    },
    "extraLarge2": {
      "description": "A URL for an extra-large-2-sized version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    },
    "extraLarge3": {
      "description": "A URL for an extra-large-3-sized version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    },
    "large": {
      "description": "A URL for a large-sized version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    },
    "medium": {
      "description": "A URL for a medium-sized version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    },
    "mediumLarge": {
      "description": "A URL for a medium-to-large-sized version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    },
    "original": {
      "description": "A URL for an original version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    },
    "small": {
      "description": "A URL for a small-sized version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    },
    "thumb": {
      "description": "A URL for a thumbnail-sized version of the image.",
      "format": "uri",
      "nullable": true,
      "type": "string"
    }
  },
  "readOnly": true,
  "type": "object"
}