Docupilot · Schema

Plan

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
plan_id string
documents_allowed integer
price integer
billing_period_unit string
View JSON Schema on GitHub

JSON Schema

app-Plan.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Plan",
  "description": "",
  "type": "object",
  "properties": {
    "plan_id": {
      "type": "string",
      "readOnly": true
    },
    "documents_allowed": {
      "type": "integer",
      "readOnly": true
    },
    "price": {
      "type": "integer",
      "readOnly": true
    },
    "billing_period_unit": {
      "enum": [
        "year",
        "month"
      ],
      "type": "string",
      "readOnly": true
    }
  },
  "required": [
    "billing_period_unit",
    "documents_allowed",
    "plan_id",
    "price"
  ]
}