Procurify · Schema

TransationCard

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
uuid string
last_four_digits string
status object * pending: Card has been created but is not yet active. It cannot authorize transactions * active: Card has been active and is ready for use * inactive: Card has been locked and can no longer authoriz
View JSON Schema on GitHub

JSON Schema

transationcard.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransationCard",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string"
    },
    "last_four_digits": {
      "type": "string"
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TransationCardStatusEnum"
        }
      ],
      "nullable": true,
      "readOnly": true,
      "description": "\n* pending: Card has been created but is not yet active. It cannot authorize transactions\n* active: Card has been active and is ready for use\n* inactive: Card has been locked and can no longer authorize transactions\n* canceled: Card has been canceled and can no longer authorize transactions\n* lost: Card has been reported lost and can no longer authorize transactions\n* stolen: Card has been reported stolen and no longer authorize transactions",
      "type": "object"
    }
  },
  "required": [
    "last_four_digits",
    "uuid"
  ]
}