{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/productImage_Put", "title": "productImage_Put", "description": "The model for a PUT to update applicable Product Image fields.", "allOf": [ { "title": "Product Image Base", "type": "object", "properties": { "product_id": { "type": "integer", "description": "The unique numeric identifier for the product with which the image is associated.\n" }, "url_zoom": { "readOnly": true, "type": "string", "description": "The zoom URL for this image. By default, this is used as the zoom image on product pages when zoom images are enabled. You should provide an image smaller than 1280x1280; otherwise, the API returns a resized image.\n" }, "url_standard": { "readOnly": true, "type": "string", "description": "The standard URL for this image. By default, this is used for product-page images.\n" }, "url_thumbnail": { "readOnly": true, "type": "string", "description": "The thumbnail URL for this image. By default, this is the image size used on the category page and in side panels.\n" }, "url_tiny": { "readOnly": true, "type": "string", "description": "The tiny URL for this image. By default, this is the image size used for thumbnails beneath the product image on a product page.\n" } }, "description": "Common ProductImage properties." }, { "$ref": "#/components/schemas/productImage_Base" } ], "x-internal": false }