changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "fallback_reason": {
+ "anyOf": [
+ {
+ "enum": [
+ "llm_unavailable",
+ "llm_timeout",
+ "llm_error",
+ "response_oversized",
+ "response_invalid",
+ "registry_unavailable",
+ "unknown_tool",
+ "unknown_recipe",
+ "unknown_operator",
+ "grounding_budget_exceeded"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "grounding": {
+ "additionalProperties": false,
+ "properties": {
+ "editor": {
+ "enum": [
+ "available",
+ "unavailable"
+ ],
+ "type": "string"
+ },
+ "graph_digest": {
+ "enum": [
+ "available",
+ "unavailable"
+ ],
+ "type": "string"
+ },
+ "operators_considered": {
+ "maximum": 12,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "project_brief": {
+ "enum": [
+ "available",
+ "unavailable"
+ ],
+ "type": "string"
+ },
+ "recipes_considered": {
+ "maximum": 8,
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "editor",
+ "project_brief",
+ "graph_digest",
+ "recipes_considered",
+ "operators_considered"
+ ],
+ "type": "object"
+ },
+ "interpretation": {
+ "maxLength": 500,
+ "minLength": 1,
+ "type": "string"
+ },
+ "operators": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "purpose": {
+ "maxLength": 240,
+ "minLength": 1,
+ "type": "string"
+ },
+ "type": {
+ "maxLength": 120,
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "purpose"
+ ],
+ "type": "object"
+ },
+ "maxItems": 12,
+ "type": "array"
+ },
+ "planner_requested": {
+ "enum": [
+ "deterministic",
+ "llm"
+ ],
+ "type": "string"
+ },
+ "planner_used": {
+ "enum": [
+ "deterministic",
+ "llm"
+ ],
+ "type": "string"
+ },
+ "recipe_id": {
+ "anyOf": [
+ {
+ "maxLength": 120,
+ "minLength": 1,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "recommended_tool": {
+ "maxLength": 120,
+ "minLength": 1,
+ "type": "string"
+ },
+ "schema_version": {
+ "const": 1,
+ "type": "number"
+ },
+ "steps": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "goal": {
+ "maxLength": 240,
+ "minLength": 1,
+ "type": "string"
+ },
+ "tool": {
+ "maxLength": 120,
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "tool",
+ "goal"
+ ],
+ "type": "object"
+ },
+ "maxItems": 8,
+ "minItems": 1,
+ "type": "array"
+ },
+ "warnings": {
+ "items": {
+ "maxLength": 240,
+ "type": "string"
+ },
+ "maxItems": 8,
+ "type": "array"
+ }
+ },
+ "required": [
+ "interpretation",
+ "recommended_tool",
+ "recipe_id",
+ "operators",
+ "steps",
+ "warnings",
+ "schema_version",
+ "planner_requested",
+ "planner_used",
+ "fallback_reason",
+ "grounding"
+ ],
+ "type": "object"
+}