Schematic · Schema
Schematic Plan
A subscription plan in Schematic that bundles features and entitlements for customer billing.
BillingEntitlementsFeature FlagsFeature ManagementFinOpsMeteringPricingSoftware-as-a-Service
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique Schematic plan identifier. |
| name | string | Display name of the plan. |
| description | string | Human-readable description of the plan. |
| planType | string | Whether this is a base subscription plan or an add-on. |
| current | boolean | Whether this plan version is the current published version. |
| entitlements | array | Feature entitlements included in this plan. |
| billingProduct | object | The associated billing product in Stripe or billing provider. |
| monthlyPrice | object | |
| yearlyPrice | object | |
| createdAt | string | |
| updatedAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.schematichq.com/schemas/plan",
"title": "Schematic Plan",
"description": "A subscription plan in Schematic that bundles features and entitlements for customer billing.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique Schematic plan identifier."
},
"name": {
"type": "string",
"description": "Display name of the plan."
},
"description": {
"type": "string",
"description": "Human-readable description of the plan."
},
"planType": {
"type": "string",
"enum": ["base", "add_on"],
"description": "Whether this is a base subscription plan or an add-on."
},
"current": {
"type": "boolean",
"description": "Whether this plan version is the current published version."
},
"entitlements": {
"type": "array",
"description": "Feature entitlements included in this plan.",
"items": { "$ref": "#/$defs/Entitlement" }
},
"billingProduct": {
"$ref": "#/$defs/BillingProductRef",
"description": "The associated billing product in Stripe or billing provider."
},
"monthlyPrice": {
"$ref": "#/$defs/BillingPriceRef"
},
"yearlyPrice": {
"$ref": "#/$defs/BillingPriceRef"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
}
},
"required": ["id", "name", "planType"],
"$defs": {
"Entitlement": {
"type": "object",
"properties": {
"id": { "type": "string" },
"feature": {
"type": "object",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" }
}
},
"valueType": {
"type": "string",
"enum": ["boolean", "numeric", "unlimited", "trait"]
},
"numericValue": {
"type": "integer",
"nullable": true
}
}
},
"BillingProductRef": {
"type": "object",
"properties": {
"id": { "type": "string" },
"externalId": { "type": "string" },
"name": { "type": "string" }
}
},
"BillingPriceRef": {
"type": "object",
"properties": {
"id": { "type": "string" },
"externalId": { "type": "string" },
"price": { "type": "integer" },
"currency": { "type": "string" },
"interval": { "type": "string", "enum": ["month", "year"] }
}
}
}
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/schematic-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.