SAP Concur · Schema

TravelAllowance

Travel allowance (per diem) data associated with an expense

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
isExpensePartOfTravelAllowance boolean Whether this expense is part of a travel allowance
dailyTravelAllowanceId string Identifier of the daily travel allowance
dailyLimitAmount number The daily allowance limit amount
View JSON Schema on GitHub

JSON Schema

sap-concur-expense-travel-allowance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TravelAllowance",
  "type": "object",
  "description": "Travel allowance (per diem) data associated with an expense",
  "properties": {
    "isExpensePartOfTravelAllowance": {
      "type": "boolean",
      "description": "Whether this expense is part of a travel allowance"
    },
    "dailyTravelAllowanceId": {
      "type": "string",
      "description": "Identifier of the daily travel allowance"
    },
    "dailyLimitAmount": {
      "type": "number",
      "description": "The daily allowance limit amount"
    }
  }
}