Procurify · Schema

VendorDocs

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
name string Name of the vendor
View JSON Schema on GitHub

JSON Schema

vendordocs.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VendorDocs",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "Name of the vendor",
      "maxLength": 150
    }
  },
  "required": [
    "name"
  ]
}