{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OnhandQuantity", "title": "OnhandQuantity", "type": "object", "properties": { "inventoryItemId": { "type": "integer", "description": "Inventory item identifier", "example": "500123" }, "organizationId": { "type": "integer", "description": "Organization identifier", "example": "500123" }, "subinventoryCode": { "type": "string", "description": "Subinventory code", "example": "example_value" }, "locatorId": { "type": "integer", "description": "Locator identifier", "example": "500123" }, "lotNumber": { "type": "string", "description": "Lot number", "example": "example_value" }, "serialNumber": { "type": "string", "description": "Serial number", "example": "example_value" }, "transactionQuantity": { "type": "number", "format": "double", "description": "On-hand quantity", "example": 42.5 }, "transactionUomCode": { "type": "string", "description": "Unit of measure code", "example": "example_value" }, "lastUpdateDate": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" } } }