Procurify · Schema

DepartmentSummary

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
branch object
external_id string External id
name string
punchout_email string PunchOut Email
active boolean
View JSON Schema on GitHub

JSON Schema

departmentsummary.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DepartmentSummary",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "branch": {
      "$ref": "#/components/schemas/BranchSummary"
    },
    "external_id": {
      "type": "string",
      "nullable": true,
      "description": "External id",
      "maxLength": 100
    },
    "name": {
      "type": "string",
      "maxLength": 150
    },
    "punchout_email": {
      "type": "string",
      "format": "email",
      "nullable": true,
      "description": "PunchOut Email",
      "maxLength": 254
    },
    "active": {
      "type": "boolean"
    }
  },
  "required": [
    "branch",
    "name"
  ]
}