SAP Concur · Schema

Travel

Travel-specific data for transportation expenses

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
startLocation string Trip origin location
endLocation string Trip destination location
ticketNumber string Ticket or booking reference number
hotelCheckinDate string Hotel check-in date
hotelCheckoutDate string Hotel check-out date
carRentalDays integer Number of car rental days
airlineServiceClassCode string Airline cabin class code
airlineFeeTypeCode string Airline fee type identifier
View JSON Schema on GitHub

JSON Schema

sap-concur-expense-travel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Travel",
  "type": "object",
  "description": "Travel-specific data for transportation expenses",
  "properties": {
    "startLocation": {
      "type": "string",
      "description": "Trip origin location"
    },
    "endLocation": {
      "type": "string",
      "description": "Trip destination location"
    },
    "ticketNumber": {
      "type": "string",
      "description": "Ticket or booking reference number"
    },
    "hotelCheckinDate": {
      "type": "string",
      "description": "Hotel check-in date"
    },
    "hotelCheckoutDate": {
      "type": "string",
      "description": "Hotel check-out date"
    },
    "carRentalDays": {
      "type": "integer",
      "description": "Number of car rental days"
    },
    "airlineServiceClassCode": {
      "type": "string",
      "description": "Airline cabin class code"
    },
    "airlineFeeTypeCode": {
      "type": "string",
      "description": "Airline fee type identifier"
    }
  }
}