Procurify · Schema

UnoptimizedBranchRead

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
external_id string External id
name string
url string
logo string
language object
multipleLocations boolean
locationTimezone integer
userLimit integer
budgetOvertureToggle boolean
purchase_filtering boolean
catalog_permission boolean
separate_expense_approval boolean
standalone_travel_approval boolean
phoneOne string
phoneTwo string
fax string
email string
fiscalYearEndDay integer
fiscalYearEndMonth integer
timezone object
beginDate string
ported boolean
port_date string
active boolean
fields_cache string
activated boolean
setup_stage object
localCurrency integer
contactPerson integer
buyerAddress integer
shippingAddress integer
View JSON Schema on GitHub

JSON Schema

unoptimizedbranchread.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UnoptimizedBranchRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "external_id": {
      "type": "string",
      "nullable": true,
      "description": "External id",
      "maxLength": 100
    },
    "name": {
      "type": "string",
      "maxLength": 150
    },
    "url": {
      "type": "string",
      "format": "uri",
      "nullable": true,
      "maxLength": 200
    },
    "logo": {
      "type": "string"
    },
    "language": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LanguageEnum"
        }
      ],
      "minimum": -2147483648,
      "maximum": 2147483647
    },
    "multipleLocations": {
      "type": "boolean"
    },
    "locationTimezone": {
      "nullable": true,
      "oneOf": [
        {
          "$ref": "#/components/schemas/LocationTimezoneEnum"
        },
        {
          "$ref": "#/components/schemas/BlankEnum"
        },
        {
          "$ref": "#/components/schemas/NullEnum"
        }
      ],
      "type": "integer"
    },
    "userLimit": {
      "type": "integer",
      "maximum": 4294967295,
      "minimum": 0,
      "format": "int64"
    },
    "budgetOvertureToggle": {
      "type": "boolean"
    },
    "purchase_filtering": {
      "type": "boolean"
    },
    "catalog_permission": {
      "type": "boolean"
    },
    "separate_expense_approval": {
      "type": "boolean"
    },
    "standalone_travel_approval": {
      "type": "boolean"
    },
    "phoneOne": {
      "type": "string",
      "maxLength": 20
    },
    "phoneTwo": {
      "type": "string",
      "nullable": true,
      "maxLength": 20
    },
    "fax": {
      "type": "string",
      "nullable": true,
      "maxLength": 20
    },
    "email": {
      "type": "string",
      "format": "email",
      "nullable": true,
      "maxLength": 254
    },
    "fiscalYearEndDay": {
      "type": "integer",
      "maximum": 4294967295,
      "minimum": 0,
      "format": "int64",
      "nullable": true
    },
    "fiscalYearEndMonth": {
      "type": "integer",
      "maximum": 4294967295,
      "minimum": 0,
      "format": "int64",
      "nullable": true
    },
    "timezone": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimezoneEnum"
        }
      ],
      "maximum": 10000,
      "exclusiveMaximum": true,
      "minimum": -10000,
      "exclusiveMinimum": true
    },
    "beginDate": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    },
    "ported": {
      "type": "boolean"
    },
    "port_date": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "active": {
      "type": "boolean"
    },
    "fields_cache": {
      "type": "string",
      "nullable": true
    },
    "activated": {
      "type": "boolean"
    },
    "setup_stage": {
      "$ref": "#/components/schemas/SetupStageEnum"
    },
    "localCurrency": {
      "type": "integer"
    },
    "contactPerson": {
      "type": "integer",
      "nullable": true
    },
    "buyerAddress": {
      "type": "integer",
      "nullable": true
    },
    "shippingAddress": {
      "type": "integer",
      "nullable": true
    }
  },
  "required": [
    "localCurrency",
    "name",
    "phoneOne"
  ]
}