Continue · Schema

Continue Free Trial Status

Schema for the free-trial status response from GET /ide/free-trial-status. Tracks the per-user chat and autocomplete quotas for Continue's hosted free trial.

AIArtificial IntelligenceDeveloper ToolsCode AssistantOpen SourceVS CodeJetBrainsCLIMCPApache 2.0

Properties

Name Type Description
optedInToFreeTrial boolean Whether the user has opted into the Continue-managed free trial.
chatCount numbernull Current number of chat messages used in the trial window.
autocompleteCount numbernull Current number of autocomplete requests used in the trial window.
chatLimit number Maximum number of chat messages allowed in the free trial.
autocompleteLimit number Maximum number of autocomplete requests allowed in the free trial.
View JSON Schema on GitHub

JSON Schema

continue-dev-free-trial-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/continue-dev/continue-dev-free-trial-status-schema.json",
  "title": "Continue Free Trial Status",
  "description": "Schema for the free-trial status response from GET /ide/free-trial-status. Tracks the per-user chat and autocomplete quotas for Continue's hosted free trial.",
  "type": "object",
  "required": ["optedInToFreeTrial", "chatLimit", "autocompleteLimit"],
  "properties": {
    "optedInToFreeTrial": {
      "type": "boolean",
      "description": "Whether the user has opted into the Continue-managed free trial."
    },
    "chatCount": {
      "type": ["number", "null"],
      "description": "Current number of chat messages used in the trial window."
    },
    "autocompleteCount": {
      "type": ["number", "null"],
      "description": "Current number of autocomplete requests used in the trial window."
    },
    "chatLimit": {
      "type": "number",
      "description": "Maximum number of chat messages allowed in the free trial."
    },
    "autocompleteLimit": {
      "type": "number",
      "description": "Maximum number of autocomplete requests allowed in the free trial."
    }
  }
}