Merge · Schema

ExpenseBatchItemRequest

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
item_id string The third-party item ID for this model in the bulk create request
payload object
View JSON Schema on GitHub

JSON Schema

merge-expensebatchitemrequest-schema.json Raw ↑
{
  "$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"
  ]
}