Properties
| Name | Type | Description |
|---|---|---|
| warehouseId | string | |
| warehouseName | string | |
| totalQuantity | integer | |
| reservedQuantity | integer | |
| hasUnlimitedQuantity | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Balance",
"title": "Balance",
"required": [
"warehouseId",
"warehouseName",
"totalQuantity",
"reservedQuantity",
"hasUnlimitedQuantity"
],
"type": "object",
"properties": {
"warehouseId": {
"type": "string"
},
"warehouseName": {
"type": "string"
},
"totalQuantity": {
"type": "integer",
"format": "int32"
},
"reservedQuantity": {
"type": "integer",
"format": "int32"
},
"hasUnlimitedQuantity": {
"type": "boolean"
}
},
"example": {
"warehouseId": "1937054",
"warehouseName": "Estoque A",
"totalQuantity": 101,
"reservedQuantity": 9,
"hasUnlimitedQuantity": false
}
}