Docupilot · Schema

AddonPricingInfo

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
addon_id string
type string
allowed_quantities array
tiers array
View JSON Schema on GitHub

JSON Schema

app-AddonPricingInfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AddonPricingInfo",
  "description": "",
  "type": "object",
  "properties": {
    "addon_id": {
      "type": "string"
    },
    "type": {
      "enum": [
        "recurring",
        "one_time"
      ],
      "type": "string"
    },
    "allowed_quantities": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    },
    "tiers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AddonTier"
      }
    }
  },
  "required": [
    "addon_id",
    "allowed_quantities",
    "tiers",
    "type"
  ]
}