SAP Concur · Schema

ExpenseSummary

A summary of an expense entry on a report

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
expenseId string Unique identifier of the expense
transactionDate string The date the transaction occurred
businessPurpose string Business justification for this expense
links array
View JSON Schema on GitHub

JSON Schema

sap-concur-expense-expense-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ExpenseSummary",
  "type": "object",
  "description": "A summary of an expense entry on a report",
  "properties": {
    "expenseId": {
      "type": "string",
      "description": "Unique identifier of the expense"
    },
    "transactionDate": {
      "type": "string",
      "description": "The date the transaction occurred"
    },
    "businessPurpose": {
      "type": "string",
      "description": "Business justification for this expense"
    },
    "links": {
      "type": "array"
    }
  }
}