SAP Concur · Schema

ExpenseItemization

An itemized line within a parent expense, representing a breakdown of the total amount.

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
itemizationId string Unique identifier of the itemization
expenseId string The parent expense identifier
transactionDate string The date of the itemized charge
transactionAmount object
expenseType object
businessPurpose string Purpose of this specific itemization
customData array
View JSON Schema on GitHub

JSON Schema

sap-concur-expenseitemization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExpenseItemization",
  "title": "ExpenseItemization",
  "type": "object",
  "description": "An itemized line within a parent expense, representing a breakdown of the total amount.",
  "properties": {
    "itemizationId": {
      "type": "string",
      "description": "Unique identifier of the itemization",
      "example": "500123"
    },
    "expenseId": {
      "type": "string",
      "description": "The parent expense identifier",
      "example": "500123"
    },
    "transactionDate": {
      "type": "string",
      "format": "date",
      "description": "The date of the itemized charge",
      "example": "2026-01-15"
    },
    "transactionAmount": {
      "$ref": "#/components/schemas/Amount"
    },
    "expenseType": {
      "$ref": "#/components/schemas/ExpenseType"
    },
    "businessPurpose": {
      "type": "string",
      "description": "Purpose of this specific itemization",
      "example": "example_value"
    },
    "customData": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CustomData"
      },
      "example": []
    }
  }
}