{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReceivedItems_Base",
"title": "ReceivedItems_Base",
"type": "array",
"items": {
"type": "object",
"properties": {
"item_id": {
"type": "integer",
"format": "int64",
"description": "The ID of the item for which received item status was updated."
},
"received_quantity": {
"type": "integer",
"format": "int64",
"description": "The quantity of items marked as received."
},
"pending_quantity": {
"type": "integer",
"format": "int64",
"description": "The quantity of items marked as pending."
}
}
},
"x-internal": false
}