{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/urban-outfitters/refs/heads/main/json-structure/marketplace-api-inventory-update-response-structure.json", "name": "InventoryUpdateResponse", "description": "Result of inventory update", "type": "object", "properties": { "updated": { "type": "int32", "description": "Number of successfully updated SKUs", "example": 2 }, "failed": { "type": "int32", "description": "Number of failed updates", "example": 0 }, "results": { "type": "array", "description": "Per-SKU update results", "items": { "type": "object", "properties": { "sku": { "type": "string", "example": "UO-BRAND-TEE-001" }, "status": { "type": "string", "example": "updated" }, "quantity": { "type": "int32", "example": 300 } } } } } }