{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExpenseBatchItemRequest", "title": "ExpenseBatchItemRequest", "type": "object", "properties": { "item_id": { "type": "string", "description": "The third-party item ID for this model in the bulk create request" }, "payload": { "$ref": "#/components/schemas/ExpenseRequest" } }, "required": [ "item_id", "payload" ] }