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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Travel",
"title": "Travel",
"type": "object",
"description": "Travel-specific data for transportation expenses",
"properties": {
"startLocation": {
"type": "string",
"description": "Trip origin location",
"maxLength": 100,
"example": "example_value"
},
"endLocation": {
"type": "string",
"description": "Trip destination location",
"maxLength": 100,
"example": "example_value"
},
"ticketNumber": {
"type": "string",
"description": "Ticket or booking reference number",
"maxLength": 32,
"example": "example_value"
},
"hotelCheckinDate": {
"type": "string",
"format": "date",
"description": "Hotel check-in date",
"example": "2026-01-15"
},
"hotelCheckoutDate": {
"type": "string",
"format": "date",
"description": "Hotel check-out date",
"example": "2026-01-15"
},
"carRentalDays": {
"type": "integer",
"description": "Number of car rental days",
"example": 10
},
"airlineServiceClassCode": {
"type": "string",
"description": "Airline cabin class code",
"enum": [
"BUSIN",
"COACH",
"FIRST"
],
"example": "BUSIN"
},
"airlineFeeTypeCode": {
"type": "string",
"description": "Airline fee type identifier",
"example": "example_value"
}
}
}