{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReceivedItems_Put", "title": "ReceivedItems_Put", "type": "array", "items": { "type": "object", "required": [ "item_id", "received_quantity", "pending_quantity" ], "properties": { "item_id": { "type": "integer", "format": "int64", "description": "The item ID for updating the received state." }, "received_quantity": { "type": "integer", "description": "The quantity of items to be marked as received." }, "pending_quantity": { "type": "integer", "description": "The quantity of items to be marked as pending." } } }, "x-internal": false }