SAP Concur · Schema

CommentRequest

Request body for creating or updating a comment

Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management

Properties

Name Type Description
comment string The comment text content
View JSON Schema on GitHub

JSON Schema

sap-concur-commentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommentRequest",
  "title": "CommentRequest",
  "type": "object",
  "description": "Request body for creating or updating a comment",
  "required": [
    "comment"
  ],
  "properties": {
    "comment": {
      "type": "string",
      "description": "The comment text content",
      "example": "example_value"
    }
  }
}