Procurify · Schema

VendorPerformance

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
overall_score number
average_delivery_time string
breakdown object
View JSON Schema on GitHub

JSON Schema

vendorperformance.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VendorPerformance",
  "type": "object",
  "properties": {
    "overall_score": {
      "type": "number",
      "format": "float",
      "readOnly": true
    },
    "average_delivery_time": {
      "type": "string",
      "format": "decimal",
      "pattern": "^-?\\d{0,3}(?:\\.\\d{0,3})?$",
      "nullable": true,
      "readOnly": true
    },
    "breakdown": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VendorBreakdownDocs"
        }
      ],
      "readOnly": true
    }
  }
}