SAP Concur Expense · Schema

ExpenseReportCreate

Expense ManagementFinancial ManagementReceiptsReimbursementReportingSAPTravel

Properties

Name Type Description
Name string The name of the expense report
Comment string Additional comments for the report
PolicyID string The expense policy ID to apply
Purpose string Business purpose for the expenses
UserDefinedDate string User-defined date for the report
View JSON Schema on GitHub

JSON Schema

sap-concur-expense-expensereportcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExpenseReportCreate",
  "title": "ExpenseReportCreate",
  "type": "object",
  "required": [
    "Name"
  ],
  "properties": {
    "Name": {
      "type": "string",
      "description": "The name of the expense report"
    },
    "Comment": {
      "type": "string",
      "description": "Additional comments for the report"
    },
    "PolicyID": {
      "type": "string",
      "description": "The expense policy ID to apply"
    },
    "Purpose": {
      "type": "string",
      "description": "Business purpose for the expenses"
    },
    "UserDefinedDate": {
      "type": "string",
      "format": "date-time",
      "description": "User-defined date for the report"
    }
  }
}