{ "$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 } }