ProductImage
Type: schema
TypeScript Definition
typescript
ProductImage: {{
id: string;
title: string | null;
alternate_text: string | null;
sort_order: number;
url_tiny: string;
url_thumbnail: string;
url_standard: string;
url_zoom: string;
};
/** ProductPricing */
}OpenAPI Schema
json
{
"title": "ProductImage",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/ProductImage",
"description": "API reference for the ProductImage schema"
},
"required": [
"id",
"title",
"alternate_text",
"sort_order",
"url_tiny",
"url_thumbnail",
"url_standard",
"url_zoom"
],
"properties": {
"id": {
"type": "string"
},
"title": {
"type": [
"string",
"null"
]
},
"alternate_text": {
"type": [
"string",
"null"
]
},
"sort_order": {
"type": "integer"
},
"url_tiny": {
"type": "string"
},
"url_thumbnail": {
"type": "string"
},
"url_standard": {
"type": "string"
},
"url_zoom": {
"type": "string"
}
},
"examples": []
}Auto-generated from OpenAPI spec and TypeScript definitions