{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SalesOrderUpdate", "title": "SalesOrderUpdate", "type": "object", "description": "Sales order header update payload", "properties": { "PurchaseOrderByCustomer": { "type": "string", "maxLength": 35 }, "RequestedDeliveryDate": { "type": "string", "format": "date" }, "ShippingCondition": { "type": "string", "maxLength": 2 }, "HeaderBillingBlockReason": { "type": "string", "maxLength": 2 }, "DeliveryBlockReason": { "type": "string", "maxLength": 2 }, "CustomerPaymentTerms": { "type": "string", "maxLength": 4 }, "IncotermsClassification": { "type": "string", "maxLength": 3 } } }