{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "UpdateReport", "type": "object", "description": "JSON Merge Patch body for updating an unsubmitted report. All fields from NewReport are updatable.", "properties": { "name": { "type": "string", "description": "The name or title of the expense report" }, "businessPurpose": { "type": "string", "description": "The business justification for the expenses" }, "reportDate": { "type": "string" }, "startDate": { "type": "string" }, "endDate": { "type": "string" }, "countryCode": { "type": "string" }, "countrySubDivisionCode": { "type": "string" }, "policyId": { "type": "string" }, "customData": { "type": "array" } } }