{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListInventoryBySKU", "title": "", "required": [ "skuId", "balance" ], "type": "object", "properties": { "skuId": { "type": "string" }, "balance": { "type": "array", "items": { "title": "Balance", "required": [ "warehouseId", "warehouseName", "totalQuantity", "reservedQuantity", "hasUnlimitedQuantity" ], "type": "object", "properties": { "warehouseId": { "type": "string" }, "warehouseName": { "type": "string" }, "totalQuantity": { "type": "integer", "format": "int32" }, "reservedQuantity": { "type": "integer", "format": "int32" }, "hasUnlimitedQuantity": { "type": "boolean" } }, "example": { "warehouseId": "1937054", "warehouseName": "Estoque A", "totalQuantity": 101, "reservedQuantity": 9, "hasUnlimitedQuantity": false } }, "description": "" } }, "example": { "skuId": "2390059", "balance": [ { "warehouseId": "1937054", "warehouseName": "Estoque A", "totalQuantity": 101, "reservedQuantity": 9, "hasUnlimitedQuantity": false }, { "warehouseId": "avl", "warehouseName": "Estoque InStore", "totalQuantity": 100, "reservedQuantity": 0, "hasUnlimitedQuantity": false }, { "warehouseId": "1448dc2", "warehouseName": "Estoque C", "totalQuantity": 100, "reservedQuantity": 0, "hasUnlimitedQuantity": false }, { "warehouseId": "140ac66", "warehouseName": "Estoque B", "totalQuantity": 100, "reservedQuantity": 0, "hasUnlimitedQuantity": false }, { "warehouseId": "pickuppoint", "warehouseName": "PickupPoint", "totalQuantity": 100, "reservedQuantity": 0, "hasUnlimitedQuantity": false }, { "warehouseId": "pickuppoint_2", "warehouseName": "PickupPoint 2", "totalQuantity": 200, "reservedQuantity": 0, "hasUnlimitedQuantity": false }, { "warehouseId": "15bfc76", "warehouseName": "Estoque Principal", "totalQuantity": 1011, "reservedQuantity": 0, "hasUnlimitedQuantity": false } ] } }