SAP Concur · Schema

ExpenseType

An expense category classification

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
id string The expense type identifier (e.g., BRKFT, LODNG, AIRFR)
name string The localized display name
code string The expense type code
isDeleted boolean Whether this type has been deactivated
View JSON Schema on GitHub

JSON Schema

sap-concur-expense-expense-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ExpenseType",
  "type": "object",
  "description": "An expense category classification",
  "properties": {
    "id": {
      "type": "string",
      "description": "The expense type identifier (e.g., BRKFT, LODNG, AIRFR)"
    },
    "name": {
      "type": "string",
      "description": "The localized display name"
    },
    "code": {
      "type": "string",
      "description": "The expense type code"
    },
    "isDeleted": {
      "type": "boolean",
      "description": "Whether this type has been deactivated"
    }
  }
}