{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PurchaseOrderUpdate", "title": "PurchaseOrderUpdate", "type": "object", "description": "Request body for updating an existing purchase order. Only provided fields will be modified.", "properties": { "lineItems": { "type": "array", "description": "Updated line items", "items": { "$ref": "#/components/schemas/PurchaseOrderLineItem" }, "example": [] }, "shipTo": { "$ref": "#/components/schemas/Address" }, "paymentTerms": { "$ref": "#/components/schemas/PaymentTerms" }, "comments": { "type": "string", "description": "Change request comments", "example": "example_value" } } }