Procurify · Schema

ExpenseDocs

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
merchant string
notes string
expenseReport object
View JSON Schema on GitHub

JSON Schema

expensedocs.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ExpenseDocs",
  "type": "object",
  "properties": {
    "merchant": {
      "type": "string"
    },
    "notes": {
      "type": "string",
      "nullable": true
    },
    "expenseReport": {
      "$ref": "#/components/schemas/ExpenseReportWithUserDocs"
    }
  },
  "required": [
    "expenseReport",
    "merchant",
    "notes"
  ]
}