Procurify · Schema

TransactionVendor

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
name string
category string
city string
state string
country string
postal_code string
View JSON Schema on GitHub

JSON Schema

transactionvendor.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransactionVendor",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "category": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "postal_code": {
      "type": "string"
    }
  },
  "required": [
    "category",
    "city",
    "country",
    "name",
    "postal_code",
    "state"
  ]
}