SAP Concur · Schema

PaymentType

A payment method used for an expense

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
id string The payment type identifier (e.g., CASH, CPAID)
name string The localized display name
code string The payment type code
View JSON Schema on GitHub

JSON Schema

sap-concur-expense-payment-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PaymentType",
  "type": "object",
  "description": "A payment method used for an expense",
  "properties": {
    "id": {
      "type": "string",
      "description": "The payment type identifier (e.g., CASH, CPAID)"
    },
    "name": {
      "type": "string",
      "description": "The localized display name"
    },
    "code": {
      "type": "string",
      "description": "The payment type code"
    }
  }
}