Procurify · Schema

CatalogItemBundleRead

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
id integer
name string
description string
image string
active boolean
items array
items_count integer
View JSON Schema on GitHub

JSON Schema

catalogitembundleread.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CatalogItemBundleRead",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 100
    },
    "description": {
      "type": "string",
      "maxLength": 250
    },
    "image": {
      "type": "string"
    },
    "active": {
      "type": "boolean"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CatalogItemReadSerializerWithQuantity"
      },
      "readOnly": true
    },
    "items_count": {
      "type": "integer",
      "readOnly": true
    }
  },
  "required": [
    "name"
  ]
}