Procurify · Schema

CreditCardAssignee

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

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