Procurify · Schema

ShippingTerm

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
name string
description string
active boolean
View JSON Schema on GitHub

JSON Schema

shippingterm.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ShippingTerm",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 100
    },
    "description": {
      "type": "string",
      "nullable": true
    },
    "active": {
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ]
}