ShopTheLookResult
Results for Shop the Look search, keyed by detection_id
- Type: object
property Name - Type: string
label The detected object label
- Type: array object[] ยท Product[]
products Matching products for this detection
A product entity with complete metadata
Examples
{
"detAbc123": {
"label": "chair",
"products": [
{
"id": "prod_xyz789",
"name": {
"en": "Modern Office Chair"
},
"sku": "CHAIR-MOD-001",
"externalRef": "ACME:ECOMMERCE:V1:PRODUCT:789",
"url": "https://shop.example.com/products/chair",
"price": {
"USD": 299.99
},
"inStock": true,
"isPublished": true,
"images": [
"https://example.com/images/chair1.jpg"
]
}
]
},
"detDef456": {
"label": "table",
"products": [
{
"id": "prod_uvw321",
"name": {
"en": "Dining Table"
},
"sku": "TABLE-DIN-001",
"externalRef": "ACME:ECOMMERCE:V1:PRODUCT:321",
"url": "https://shop.example.com/products/table",
"price": {
"USD": 599.99
},
"inStock": true,
"isPublished": true,
"images": [
"https://example.com/images/table1.jpg"
]
}
]
}
}