Procurify · Schema

CreditCardAssigneeRequest

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

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

JSON Schema

creditcardassigneerequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreditCardAssigneeRequest",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "maxLength": 100
    },
    "lastName": {
      "type": "string",
      "maxLength": 100
    },
    "email": {
      "type": "string",
      "format": "email",
      "minLength": 1,
      "maxLength": 254
    },
    "profile_image": {
      "type": "string",
      "format": "binary",
      "nullable": true
    }
  },
  "required": [
    "email"
  ]
}