Procurify · Schema

BillListViewApproverUserDocs

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
firstName string
lastName string
profile_image string
approval_delegatee object
View JSON Schema on GitHub

JSON Schema

billlistviewapproveruserdocs.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BillListViewApproverUserDocs",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "maxLength": 100
    },
    "lastName": {
      "type": "string",
      "maxLength": 100
    },
    "profile_image": {
      "type": "string",
      "nullable": true
    },
    "approval_delegatee": {
      "$ref": "#/components/schemas/ApprovalDelegateeSlimDocs"
    }
  },
  "required": [
    "approval_delegatee"
  ]
}