Procurify · Schema

ExpenseLineCreditCard

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
name string
number string
type object
View JSON Schema on GitHub

JSON Schema

expenselinecreditcard.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ExpenseLineCreditCard",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "number": {
      "type": "string",
      "pattern": "^[0-9]{4}$",
      "maxLength": 19
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreditCardTypeEnum"
        }
      ],
      "minimum": -2147483648,
      "maximum": 2147483647
    }
  }
}