{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InventoryPosition", "title": "InventoryPosition", "type": "object", "properties": { "itemId": { "type": "string" }, "locationId": { "type": "string" }, "locationName": { "type": "string" }, "onHand": { "type": "number" }, "reserved": { "type": "number" }, "available": { "type": "number" }, "onOrder": { "type": "number" }, "updatedAt": { "type": "string", "format": "date-time" } } }