Procurify · Schema

BreakdownDocs

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
score number
weight string
View JSON Schema on GitHub

JSON Schema

breakdowndocs.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BreakdownDocs",
  "type": "object",
  "properties": {
    "score": {
      "type": "number",
      "format": "double"
    },
    "weight": {
      "type": "string",
      "format": "decimal",
      "pattern": "^-?\\d{0,1}(?:\\.\\d{0,1})?$"
    }
  },
  "required": [
    "score",
    "weight"
  ]
}