Procurify · Schema

TransactionFund

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
uuid string
title string
reason string
status object * open: The fund is open and available for use * closed: The fund is closed and no longer available for use
date_created string
amount string
account object
View JSON Schema on GitHub

JSON Schema

transactionfund.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransactionFund",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "reason": {
      "type": "string"
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TransactionFundStatusEnum"
        }
      ],
      "readOnly": true,
      "description": "\n* open: The fund is open and available for use\n* closed: The fund is closed and no longer available for use"
    },
    "date_created": {
      "type": "string",
      "format": "date-time"
    },
    "amount": {
      "type": "string",
      "readOnly": true
    },
    "account": {
      "$ref": "#/components/schemas/TransactionAccount"
    }
  },
  "required": [
    "account",
    "date_created",
    "reason",
    "title",
    "uuid"
  ]
}