Braintree · Schema

Plan

Represents a billing plan template defined in the Braintree Control Panel. Plans specify the recurring price, currency, billing frequency, and optional trial period that subscriptions inherit.

Properties

Name Type Description
id string Unique identifier for the plan used when creating subscriptions.
name string Human-readable name for the plan.
description string Detailed description of the plan.
price string Base price per billing cycle as a decimal string.
currency_iso_code string ISO 4217 currency code for the plan price.
billing_frequency integer How often the plan bills, in units of billing_frequency_unit. For example, 1 with billing_frequency_unit "month" means monthly.
number_of_billing_cycles integer Default number of billing cycles. Null means the plan continues indefinitely.
trial_period boolean Whether subscriptions to this plan include a trial period by default.
trial_duration integer Default trial duration for subscriptions to this plan.
trial_duration_unit string Unit for the default trial duration.
add_ons array Add-ons automatically applied to subscriptions using this plan.
discounts array Discounts automatically applied to subscriptions using this plan.
created_at string Timestamp when the plan was created.
updated_at string Timestamp when the plan was last updated.
View JSON Schema on GitHub

JSON Schema

braintree-plan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Plan",
  "title": "Plan",
  "type": "object",
  "description": "Represents a billing plan template defined in the Braintree Control Panel. Plans specify the recurring price, currency, billing frequency, and optional trial period that subscriptions inherit.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the plan used when creating subscriptions."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name for the plan."
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the plan."
    },
    "price": {
      "type": "string",
      "description": "Base price per billing cycle as a decimal string.",
      "example": "9.99"
    },
    "currency_iso_code": {
      "type": "string",
      "description": "ISO 4217 currency code for the plan price.",
      "example": "USD"
    },
    "billing_frequency": {
      "type": "integer",
      "description": "How often the plan bills, in units of billing_frequency_unit. For example, 1 with billing_frequency_unit \"month\" means monthly.",
      "minimum": 1
    },
    "number_of_billing_cycles": {
      "type": "integer",
      "description": "Default number of billing cycles. Null means the plan continues indefinitely."
    },
    "trial_period": {
      "type": "boolean",
      "description": "Whether subscriptions to this plan include a trial period by default."
    },
    "trial_duration": {
      "type": "integer",
      "description": "Default trial duration for subscriptions to this plan."
    },
    "trial_duration_unit": {
      "type": "string",
      "description": "Unit for the default trial duration.",
      "enum": [
        "day",
        "month"
      ]
    },
    "add_ons": {
      "type": "array",
      "description": "Add-ons automatically applied to subscriptions using this plan.",
      "items": {
        "$ref": "#/components/schemas/AppliedModification"
      }
    },
    "discounts": {
      "type": "array",
      "description": "Discounts automatically applied to subscriptions using this plan.",
      "items": {
        "$ref": "#/components/schemas/AppliedModification"
      }
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the plan was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the plan was last updated."
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/braintree-plan"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.