Procurify · Schema

ApprovalDelegatee

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
firstName string
lastName string
email string
profile_image string
View JSON Schema on GitHub

JSON Schema

approvaldelegatee.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ApprovalDelegatee",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "profile_image": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "email",
    "firstName",
    "id",
    "lastName"
  ]
}