Docupilot · Schema

ChargebeeSubscription

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
plan_id string
status string
trial_end string
billing_period_unit string
current_term_start string
current_term_end string
unpaid_invoices integer
max_allowed_unpaid_invoices integer
overage_enabled boolean
documents_allowed integer
documents_created integer
can_extend_trial boolean
subscribed_on string
signnow_credits_allowed integer
signnow_credits_used integer
trial_signatures_allowed integer
trial_signatures_used integer
signatures_allowed integer
signatures_used integer
View JSON Schema on GitHub

JSON Schema

app-ChargebeeSubscription.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ChargebeeSubscription",
  "description": "",
  "type": "object",
  "properties": {
    "plan_id": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "status": {
      "enum": [
        "a",
        "t",
        "e",
        "c",
        "p"
      ],
      "type": "string",
      "readOnly": true
    },
    "trial_end": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "billing_period_unit": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "current_term_start": {
      "type": "string",
      "readOnly": true
    },
    "current_term_end": {
      "type": "string",
      "readOnly": true
    },
    "unpaid_invoices": {
      "type": "integer",
      "readOnly": true
    },
    "max_allowed_unpaid_invoices": {
      "type": "integer",
      "readOnly": true
    },
    "overage_enabled": {
      "type": "boolean"
    },
    "documents_allowed": {
      "type": "integer",
      "readOnly": true
    },
    "documents_created": {
      "type": "integer",
      "readOnly": true
    },
    "can_extend_trial": {
      "type": "boolean",
      "readOnly": true
    },
    "subscribed_on": {
      "type": "string",
      "readOnly": true
    },
    "signnow_credits_allowed": {
      "type": "integer",
      "readOnly": true
    },
    "signnow_credits_used": {
      "type": "integer",
      "readOnly": true
    },
    "trial_signatures_allowed": {
      "type": "integer",
      "readOnly": true
    },
    "trial_signatures_used": {
      "type": "integer",
      "readOnly": true
    },
    "signatures_allowed": {
      "type": "integer",
      "readOnly": true
    },
    "signatures_used": {
      "type": "integer",
      "readOnly": true
    }
  },
  "required": [
    "billing_period_unit",
    "can_extend_trial",
    "current_term_end",
    "current_term_start",
    "documents_allowed",
    "documents_created",
    "max_allowed_unpaid_invoices",
    "overage_enabled",
    "plan_id",
    "signatures_allowed",
    "signatures_used",
    "signnow_credits_allowed",
    "signnow_credits_used",
    "status",
    "subscribed_on",
    "trial_end",
    "trial_signatures_allowed",
    "trial_signatures_used",
    "unpaid_invoices"
  ]
}