{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RequisitionLine", "title": "RequisitionLine", "type": "object", "properties": { "requisitionLineId": { "type": "integer", "example": "500123" }, "lineNum": { "type": "integer", "example": 10 }, "itemId": { "type": "integer", "example": "500123" }, "itemDescription": { "type": "string", "example": "example_value" }, "categoryId": { "type": "integer", "example": "500123" }, "quantity": { "type": "number", "format": "double", "example": 42.5 }, "unitMeasLookupCode": { "type": "string", "example": "example_value" }, "unitPrice": { "type": "number", "format": "double", "example": 42.5 }, "needByDate": { "type": "string", "format": "date", "example": "2026-01-15" }, "suggestedVendorId": { "type": "integer", "example": "500123" } } }