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