SAP Concur · Schema

Location

A geographic location associated with an expense

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
id string The location identifier
name string The localized location name
city string The city name
countryCode string ISO 3166-1 alpha-2 country code
countrySubDivisionCode string ISO 3166-2 subdivision code
View JSON Schema on GitHub

JSON Schema

sap-concur-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Location",
  "title": "Location",
  "type": "object",
  "description": "A geographic location associated with an expense",
  "properties": {
    "id": {
      "type": "string",
      "description": "The location identifier",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "The localized location name",
      "example": "Example Title"
    },
    "city": {
      "type": "string",
      "description": "The city name",
      "example": "example_value"
    },
    "countryCode": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code",
      "example": "example_value"
    },
    "countrySubDivisionCode": {
      "type": "string",
      "description": "ISO 3166-2 subdivision code",
      "example": "example_value"
    }
  }
}