Continue · JSON Structure

Continue Dev Assistant Structure

JSON Structure representation of a Continue Hub assistant returned by the Continue Hub IDE API.

Type: object Properties: 7
AIArtificial IntelligenceDeveloper ToolsCode AssistantOpen SourceVS CodeJetBrainsCLIMCPApache 2.0

Continue Dev Assistant Structure is a JSON Structure definition published by Continue, describing 7 properties. It conforms to the https://json-structure.org/draft/2025-09/schema meta-schema.

Properties

configResult ownerSlug packageSlug iconUrl onPremProxyUrl useOnPremProxy rawYaml

Meta-schema: https://json-structure.org/draft/2025-09/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2025-09/schema",
  "title": "Continue Hub Assistant Structure",
  "description": "JSON Structure representation of a Continue Hub assistant returned by the Continue Hub IDE API.",
  "type": "object",
  "properties": {
    "configResult": {
      "type": "object",
      "properties": {
        "config": { "type": "object", "nullable": true },
        "configLoadInterrupted": { "type": "boolean" },
        "errors": { "type": "array", "items": { "type": "string" }, "nullable": true }
      }
    },
    "ownerSlug": { "type": "string" },
    "packageSlug": { "type": "string" },
    "iconUrl": { "type": "string", "format": "uri", "nullable": true },
    "onPremProxyUrl": { "type": "string", "format": "uri", "nullable": true },
    "useOnPremProxy": { "type": "boolean", "nullable": true },
    "rawYaml": { "type": "string" }
  }
}