eBay · Schema

Image

Type that defines the details of an image, such as size and image URL. Currently, only imageUrl is populated. The height and width are reserved for future use.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
height integer Reserved for future use.
imageUrl string The URL of the image.
width integer Reserved for future use.
View JSON Schema on GitHub

JSON Schema

ebay-image-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Image",
  "title": "Image",
  "type": "object",
  "properties": {
    "height": {
      "type": "integer",
      "description": "Reserved for future use.",
      "format": "int32"
    },
    "imageUrl": {
      "type": "string",
      "description": "The URL of the image."
    },
    "width": {
      "type": "integer",
      "description": "Reserved for future use.",
      "format": "int32"
    }
  },
  "description": "Type that defines the details of an image, such as size and image URL. Currently, only <code>imageUrl</code> is populated. The <code>height</code> and <code>width</code> are reserved for future use."
}