Procurify · Schema

Comment

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
userprofile object
id integer
comment string
submit_date string
View JSON Schema on GitHub

JSON Schema

comment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Comment",
  "type": "object",
  "properties": {
    "userprofile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserSummary"
        }
      ],
      "readOnly": true
    },
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "comment": {
      "type": "string",
      "readOnly": true
    },
    "submit_date": {
      "type": "string",
      "format": "date-time",
      "title": "Date/time submitted"
    }
  }
}