SAP Concur · Schema

Comment

A comment on a report or expense

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
comment string The comment text content
author object The user who authored the comment
creationDate string When the comment was created
isLatest boolean Whether this is the most recent comment
isAuditLog boolean Whether this is a system-generated audit entry
View JSON Schema on GitHub

JSON Schema

sap-concur-expense-comment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Comment",
  "type": "object",
  "description": "A comment on a report or expense",
  "properties": {
    "comment": {
      "type": "string",
      "description": "The comment text content"
    },
    "author": {
      "type": "object",
      "description": "The user who authored the comment"
    },
    "creationDate": {
      "type": "string",
      "description": "When the comment was created"
    },
    "isLatest": {
      "type": "boolean",
      "description": "Whether this is the most recent comment"
    },
    "isAuditLog": {
      "type": "boolean",
      "description": "Whether this is a system-generated audit entry"
    }
  }
}