Procurify · Schema

LocationSimple

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
name string
headquarter boolean
View JSON Schema on GitHub

JSON Schema

locationsimple.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LocationSimple",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 150
    },
    "headquarter": {
      "type": "boolean",
      "readOnly": true
    }
  },
  "required": [
    "name"
  ]
}