changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "data": {
+ "additionalProperties": true,
+ "description": "Surface comparison split by audience.",
+ "properties": {
+ "cloud_connector_can": {
+ "description": "What Remote MCP alone can already do.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "cta": {
+ "additionalProperties": true,
+ "description": "Where to send a user who wants the local runtime.",
+ "properties": {
+ "label": {
+ "description": "Call-to-action label.",
+ "type": "string"
+ },
+ "message": {
+ "description": "One-line upgrade message to relay to the user.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Download page URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "label",
+ "url",
+ "message"
+ ],
+ "type": "object"
+ },
+ "for_fast_gui_users_desktop": {
+ "description": "Pitch for GUI users (Pathrule Studio)."
+ },
+ "for_power_users_cli_plus_web": {
+ "description": "Pitch for terminal-first users (Pathrule CLI)."
+ },
+ "remote_mcp_stays_useful_for": {
+ "description": "Cases where Remote MCP remains the right surface."
+ },
+ "why_upgrade": {
+ "description": "The token-cost argument for a local runtime."
+ }
+ },
+ "required": [
+ "cloud_connector_can",
+ "cta"
+ ],
+ "type": "object"
+ },
+ "error": {
+ "additionalProperties": true,
+ "description": "Present only when ok is false.",
+ "properties": {
+ "code": {
+ "description": "Stable machine-readable failure code, for example insufficient_scope, workspace_id_required, rate_limited, not_found, or upstream_error. Branch on this, not on message text.",
+ "type": "string"
+ },
+ "detail": {
+ "description": "Optional structured context for the failure, for example { missing_scopes: [...] } on insufficient_scope."
+ },
+ "message": {
+ "description": "Human-readable explanation of the failure.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "message"
+ ],
+ "type": "object"
+ },
+ "human_message": {
+ "description": "One-line summary of the result, safe to relay to the user verbatim.",
+ "type": "string"
+ },
+ "ok": {
+ "description": "true when the call succeeded. false when it did not, in which case `error` carries the reason and the success fields are absent.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "ok"
+ ],
+ "type": "object"
+}