Procurify · Schema

ApproverReadDocs

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
user object
amount_limit string
item_variance_amount_limit string
item_variance_percentage_limit string
approval_level integer
bill_amount_limit string
View JSON Schema on GitHub

JSON Schema

approverreaddocs.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ApproverReadDocs",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "user": {
      "$ref": "#/components/schemas/SimpleUserSummary"
    },
    "amount_limit": {
      "type": "string",
      "format": "decimal",
      "pattern": "^-?\\d{0,13}(?:\\.\\d{0,2})?$"
    },
    "item_variance_amount_limit": {
      "type": "string",
      "format": "decimal",
      "pattern": "^-?\\d{0,13}(?:\\.\\d{0,2})?$",
      "nullable": true
    },
    "item_variance_percentage_limit": {
      "type": "string",
      "format": "decimal",
      "pattern": "^-?\\d{0,13}(?:\\.\\d{0,2})?$",
      "nullable": true
    },
    "approval_level": {
      "type": "integer"
    },
    "bill_amount_limit": {
      "type": "string",
      "format": "decimal",
      "pattern": "^-?\\d{0,13}(?:\\.\\d{0,2})?$"
    }
  },
  "required": [
    "amount_limit",
    "approval_level",
    "bill_amount_limit",
    "user"
  ]
}