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-travelallowance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TravelAllowance",
  "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",
      "example": true
    },
    "dailyTravelAllowanceId": {
      "type": "string",
      "description": "Identifier of the daily travel allowance",
      "maxLength": 32,
      "example": "500123"
    },
    "dailyLimitAmount": {
      "type": "number",
      "format": "double",
      "description": "The daily allowance limit amount",
      "example": 42.5
    }
  }
}