Skip to main content
Glama

get_fault_experiment

Read-onlyIdempotent

Retrieve a completed fault experiment result by ID to audit execution evidence and analyze failure outcomes.

Instructions

Read one immutable completed fault experiment result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
result_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed128 schema fields changedv0.1.15
    • addedOutput schema / $defs / ActionId
      Added value: +{
      +  "description": "Stable product-level identities for executable agent workflow edges.",
      +  "enum": [
      +    "workspace.initialize",
      +    "workload.configuration.inspect",
      +    "workload.configure",
      +    "capabilities.inspect",
      +    "capabilities.setup.start",
      +    "capabilities.setup.status",
      +    "adapter.prepare",
      +    "workload.dependencies.prepare",
      +    "workflow.list",
      +    "workflow.get",
      +    "fault_experiment.plan",
      +    "capture.plan",
      +    "capture.detached.start",
      +    "capture.detached.status",
      +    "catalog.rebuild",
      +    "run.list",
      +    "artifact.list",
      +    "artifact.preview",
      +    "artifact.native_viewer.plan",
      +    "artifact.import",
      +    "artifact.import.xctrace",
      +    "artifact.extract.perfetto",
      +    "artifact.extract.memray",
      +    "artifact.extract.status",
      +    "artifact.extract.nsight_systems",
      +    "artifact.extract.nsight_compute",
      +    "artifact.extract.compute_sanitizer",
      +    "inference.server.configure",
      +    "inference.configuration.list",
      +    "inference.scenario.plan",
      +    "reduction.execute",
      +    "reduction.status",
      +    "analysis.memory",
      +    "analysis.nsight_compute"
      +  ],
      +  "title": "ActionId",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / AnalysisRecord
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "analysis_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Analysis Id",
      +      "type": "string"
      +    },
      +    "completed_at": {
      +      "format": "date-time",
      +      "title": "Completed At",
      +      "type": "string"
      +    },
      +    "corpus_commit_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Corpus Commit Id",
      +      "type": "string"
      +    },
      +    "coverage": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "title": "Coverage",
      +      "type": "object"
      +    },
      +    "input_artifact_ids": {
      +      "default": [],
      +      "items": {
      +        "pattern": "^sha256:[0-9a-f]{64}$",
      +        "type": "string"
      +      },
      +      "title": "Input Artifact Ids",
      +      "type": "array"
      +    },
      +    "input_generation_ids": {
      +      "default": [],
      +      "items": {
      +        "maxLength": 200,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "title": "Input Generation Ids",
      +      "type": "array"
      +    },
      +    "input_run_ids": {
      +      "default": [],
      +      "items": {
      +        "maxLength": 200,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "title": "Input Run Ids",
      +      "type": "array"
      +    },
      +    "limitations": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Limitations",
      +      "type": "array"
      +    },
      +    "parameters": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "title": "Parameters",
      +      "type": "object"
      +    },
      +    "parameters_digest": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Parameters Digest",
      +      "type": "string"
      +    },
      +    "recipe": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Recipe",
      +      "type": "string"
      +    },
      +    "recipe_version": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Recipe Version",
      +      "type": "string"
      +    },
      +    "result_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Result Artifact Id"
      +    },
      +    "result_digest": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Result Digest",
      +      "type": "string"
      +    },
      +    "started_at": {
      +      "format": "date-time",
      +      "title": "Started At",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "analysis_id",
      +    "recipe",
      +    "recipe_version",
      +    "parameters",
      +    "parameters_digest",
      +    "corpus_commit_id",
      +    "result_digest",
      +    "started_at",
      +    "completed_at"
      +  ],
      +  "title": "AnalysisRecord",
      +  "type": "object"
      +}
    • changedOutput schema / $defs / CancelledTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / CancelledTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / Comparison
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "absolute_change": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue",
      +              "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/UnsignedIntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Absolute Change"
      +    },
      +    "baseline_attempted_n": {
      +      "minimum": 0,
      +      "title": "Baseline Attempted N",
      +      "type": "integer"
      +    },
      +    "baseline_eligible_n": {
      +      "minimum": 0,
      +      "title": "Baseline Eligible N",
      +      "type": "integer"
      +    },
      +    "baseline_excluded_n": {
      +      "default": 0,
      +      "minimum": 0,
      +      "title": "Baseline Excluded N",
      +      "type": "integer"
      +    },
      +    "baseline_failed_n": {
      +      "default": 0,
      +      "minimum": 0,
      +      "title": "Baseline Failed N",
      +      "type": "integer"
      +    },
      +    "baseline_missing_n": {
      +      "default": 0,
      +      "minimum": 0,
      +      "title": "Baseline Missing N",
      +      "type": "integer"
      +    },
      +    "baseline_out_of_domain_n": {
      +      "default": 0,
      +      "minimum": 0,
      +      "title": "Baseline Out Of Domain N",
      +      "type": "integer"
      +    },
      +    "baseline_run_set_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Baseline Run Set Id",
      +      "type": "string"
      +    },
      +    "baseline_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue",
      +              "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/UnsignedIntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Baseline Value"
      +    },
      +    "candidate_attempted_n": {
      +      "minimum": 0,
      +      "title": "Candidate Attempted N",
      +      "type": "integer"
      +    },
      +    "candidate_eligible_n": {
      +      "minimum": 0,
      +      "title": "Candidate Eligible N",
      +      "type": "integer"
      +    },
      +    "candidate_excluded_n": {
      +      "default": 0,
      +      "minimum": 0,
      +      "title": "Candidate Excluded N",
      +      "type": "integer"
      +    },
      +    "candidate_failed_n": {
      +      "default": 0,
      +      "minimum": 0,
      +      "title": "Candidate Failed N",
      +      "type": "integer"
      +    },
      +    "candidate_missing_n": {
      +      "default": 0,
      +      "minimum": 0,
      +      "title": "Candidate Missing N",
      +      "type": "integer"
      +    },
      +    "candidate_out_of_domain_n": {
      +      "default": 0,
      +      "minimum": 0,
      +      "title": "Candidate Out Of Domain N",
      +      "type": "integer"
      +    },
      +    "candidate_run_set_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Candidate Run Set Id",
      +      "type": "string"
      +    },
      +    "candidate_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue",
      +              "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/UnsignedIntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Candidate Value"
      +    },
      +    "comparison_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Comparison Id",
      +      "type": "string"
      +    },
      +    "complete_pair_n": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Complete Pair N"
      +    },
      +    "confidence_interval": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ConfidenceInterval"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "decision": {
      +      "$ref": "#/$defs/ComparisonDecision"
      +    },
      +    "effect_size": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Effect Size"
      +    },
      +    "estimand": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Estimand",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Experiment Id"
      +    },
      +    "independent_unit": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Independent Unit",
      +      "type": "string"
      +    },
      +    "measurement_series_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Measurement Series Id"
      +    },
      +    "method": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Method",
      +      "type": "string"
      +    },
      +    "metric": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Metric",
      +      "type": "string"
      +    },
      +    "metric_contract_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Metric Contract Id",
      +      "type": "string"
      +    },
      +    "metric_source": {
      +      "$ref": "#/$defs/MetricSource",
      +      "default": "measurement"
      +    },
      +    "mismatches": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Mismatches",
      +      "type": "array"
      +    },
      +    "multiplicity": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": {
      +            "$ref": "#/$defs/JsonValue"
      +          },
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Multiplicity"
      +    },
      +    "polarity": {
      +      "$ref": "#/$defs/MetricPolarity"
      +    },
      +    "practical_threshold": {
      +      "minimum": 0,
      +      "title": "Practical Threshold",
      +      "type": "number"
      +    },
      +    "protocol_identity_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Protocol Identity Id"
      +    },
      +    "random_seed": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Random Seed"
      +    },
      +    "relative_change": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Relative Change"
      +    },
      +    "unit": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Unit",
      +      "type": "string"
      +    },
      +    "validity": {
      +      "$ref": "#/$defs/ComparisonValidity"
      +    },
      +    "value_domain": {
      +      "$ref": "#/$defs/MetricValueDomain",
      +      "default": "strictly_positive"
      +    },
      +    "zero_policy": {
      +      "$ref": "#/$defs/MetricZeroPolicy",
      +      "default": "reject"
      +    }
      +  },
      +  "required": [
      +    "comparison_id",
      +    "baseline_run_set_id",
      +    "candidate_run_set_id",
      +    "metric",
      +    "unit",
      +    "metric_contract_id",
      +    "polarity",
      +    "estimand",
      +    "practical_threshold",
      +    "method",
      +    "independent_unit",
      +    "baseline_attempted_n",
      +    "baseline_eligible_n",
      +    "candidate_attempted_n",
      +    "candidate_eligible_n",
      +    "decision",
      +    "validity"
      +  ],
      +  "title": "Comparison",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ComparisonDecision
      Added value: +{
      +  "enum": [
      +    "meaningful_improvement",
      +    "meaningful_regression",
      +    "no_meaningful_difference",
      +    "inconclusive",
      +    "descriptive_only"
      +  ],
      +  "title": "ComparisonDecision",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ComparisonResult
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "analysis": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/AnalysisRecord"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "baseline_run_set": {
      +      "$ref": "#/$defs/RunSet"
      +    },
      +    "candidate_run_set": {
      +      "$ref": "#/$defs/RunSet"
      +    },
      +    "comparison": {
      +      "$ref": "#/$defs/Comparison"
      +    },
      +    "corpus_commit_id": {
      +      "title": "Corpus Commit Id",
      +      "type": "string"
      +    },
      +    "evidence": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/EvidenceReference"
      +      },
      +      "title": "Evidence",
      +      "type": "array"
      +    },
      +    "materialized_commit_id": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Materialized Commit Id"
      +    },
      +    "profile_changes": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/ProfileChange"
      +      },
      +      "title": "Profile Changes",
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "comparison",
      +    "baseline_run_set",
      +    "candidate_run_set",
      +    "corpus_commit_id"
      +  ],
      +  "title": "ComparisonResult",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ComparisonValidity
      Added value: +{
      +  "enum": [
      +    "valid",
      +    "exploratory",
      +    "invalid"
      +  ],
      +  "title": "ComparisonValidity",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ConfidenceInterval
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "high": {
      +      "title": "High",
      +      "type": "number"
      +    },
      +    "level": {
      +      "exclusiveMaximum": 1,
      +      "exclusiveMinimum": 0,
      +      "title": "Level",
      +      "type": "number"
      +    },
      +    "low": {
      +      "title": "Low",
      +      "type": "number"
      +    }
      +  },
      +  "required": [
      +    "low",
      +    "high",
      +    "level"
      +  ],
      +  "title": "ConfidenceInterval",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / ConfigureInferenceRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "configure_inference",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "enum": [
      -        "configure_inference_server",
      -        "list_inference_configurations"
      -      ],
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ConfigureInferenceRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ConfigureWorkloadRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "context": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/ConfigureWorkloadRecoveryContext"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null
      -    },
      -    "kind": {
      -      "const": "configure_workload",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "configure_workload",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ConfigureWorkloadRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ConfigureWorkloadRecoveryContext
      Removed value: -{
      -  "additionalProperties": false,
      -  "description": "Typed arguments for the safe structured configuration recovery.",
      -  "properties": {
      -    "config_path": {
      -      "const": "flameox.toml",
      -      "default": "flameox.toml",
      -      "title": "Config Path",
      -      "type": "string"
      -    },
      -    "kind": {
      -      "const": "configure_workload",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "operation": {
      -      "const": "create",
      -      "default": "create",
      -      "title": "Operation",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "kind"
      -  ],
      -  "title": "ConfigureWorkloadRecoveryContext",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DiscoverArtifactsRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "discover_artifacts",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "list_artifacts",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "DiscoverArtifactsRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DiscoverRunsRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "discover_runs",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "list_runs",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "DiscoverRunsRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DiscoverWorkflowsRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "discover_workflows",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "enum": [
      -        "list_declared_workflows",
      -        "get_declared_workflow"
      -      ],
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "DiscoverWorkflowsRecovery",
      -  "type": "object"
      -}
    • changedOutput schema / $defs / ErrorCode / enum
      Previous value: -[
      -  "INVALID_ARGUMENTS",
      -  "WORKSPACE_NOT_FOUND",
      -  "WORKSPACE_INVALID",
      -  "RUN_NOT_FOUND",
      -  "CAPABILITY_UNAVAILABLE",
      -  "INVALID_CAPTURE_PLAN",
      -  "EXECUTION_REFUSED",
      -  "PROCESS_FAILED",
      -  "PROCESS_TIMEOUT",
      -  "PROCESS_CANCELLED",
      -  "ARTIFACT_TOO_LARGE",
      -  "ARTIFACT_INTEGRITY_FAILED",
      -  "ARTIFACT_PARSE_FAILED",
      -  "EVIDENCE_SCHEMA_MISMATCH",
      -  "COMPARISON_INVALID",
      -  "QUERY_BUDGET_EXCEEDED",
      -  "STORAGE_QUOTA_EXCEEDED",
      -  "WRITE_LOCK_TIMEOUT",
      -  "SENSITIVE_ARTIFACT_REFUSED",
      -  "REVISION_CONFLICT",
      -  "STALE_CURSOR",
      -  "INTERNAL_ERROR"
      -]New value: +[
      +  "INVALID_ARGUMENTS",
      +  "WORKSPACE_NOT_FOUND",
      +  "WORKSPACE_INVALID",
      +  "RUN_NOT_FOUND",
      +  "CAPABILITY_UNAVAILABLE",
      +  "INVALID_CAPTURE_PLAN",
      +  "PLAN_ID_MISMATCH",
      +  "PLAN_TOKEN_UNKNOWN",
      +  "PLAN_TOKEN_EXPIRED",
      +  "PLAN_TOKEN_CONSUMED",
      +  "EXECUTION_REFUSED",
      +  "PROCESS_FAILED",
      +  "PROCESS_TIMEOUT",
      +  "PROCESS_CANCELLED",
      +  "ARTIFACT_TOO_LARGE",
      +  "ARTIFACT_NOT_FOUND",
      +  "ARTIFACT_INTEGRITY_FAILED",
      +  "ARTIFACT_PARSE_FAILED",
      +  "ADAPTER_INCOMPATIBLE",
      +  "EVIDENCE_SCHEMA_MISMATCH",
      +  "COMPARISON_INVALID",
      +  "QUERY_BUDGET_EXCEEDED",
      +  "STORAGE_QUOTA_EXCEEDED",
      +  "WRITE_LOCK_TIMEOUT",
      +  "LOCK_ORDER_VIOLATION",
      +  "SENSITIVE_ARTIFACT_REFUSED",
      +  "REVISION_CONFLICT",
      +  "STALE_CURSOR",
      +  "INTERNAL_ERROR"
      +]
    • addedOutput schema / $defs / EvidenceReference
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "owner_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Owner Id",
      +      "type": "string"
      +    },
      +    "owner_revision": {
      +      "anyOf": [
      +        {
      +          "minimum": 1,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Owner Revision"
      +    },
      +    "owner_type": {
      +      "enum": [
      +        "analysis",
      +        "finding",
      +        "hypothesis"
      +      ],
      +      "title": "Owner Type",
      +      "type": "string"
      +    },
      +    "ref_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Ref Id",
      +      "type": "string"
      +    },
      +    "ref_type": {
      +      "$ref": "#/$defs/EvidenceReferenceType"
      +    },
      +    "relation": {
      +      "$ref": "#/$defs/EvidenceRelation"
      +    }
      +  },
      +  "required": [
      +    "owner_type",
      +    "owner_id",
      +    "ref_type",
      +    "ref_id",
      +    "relation"
      +  ],
      +  "title": "EvidenceReference",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / EvidenceReferenceType
      Added value: +{
      +  "enum": [
      +    "analysis",
      +    "artifact",
      +    "comparison",
      +    "generation",
      +    "observation",
      +    "run",
      +    "run_set",
      +    "static_candidate",
      +    "trial"
      +  ],
      +  "title": "EvidenceReferenceType",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / EvidenceRelation
      Added value: +{
      +  "enum": [
      +    "supports",
      +    "contradicts",
      +    "context",
      +    "validates"
      +  ],
      +  "title": "EvidenceRelation",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ExcludedRunSetMember
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "included": {
      +      "const": false,
      +      "default": false,
      +      "title": "Included",
      +      "type": "boolean"
      +    },
      +    "order": {
      +      "minimum": 0,
      +      "title": "Order",
      +      "type": "integer"
      +    },
      +    "reason": {
      +      "maxLength": 500,
      +      "minLength": 1,
      +      "title": "Reason",
      +      "type": "string"
      +    },
      +    "run_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Run Id",
      +      "type": "string"
      +    },
      +    "trial_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Trial Id"
      +    }
      +  },
      +  "required": [
      +    "run_id",
      +    "order",
      +    "reason"
      +  ],
      +  "title": "ExcludedRunSetMember",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / Experiment / properties / measurement_series
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/MeasurementSeriesSelector"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedOutput schema / $defs / Experiment / properties / metric_source
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/MetricSource"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedOutput schema / $defs / Experiment / properties / polarity / $ref
      Added value: +"#/$defs/MetricPolarity"
    • removedOutput schema / $defs / Experiment / properties / polarity / enum
      Removed value: -[
      -  "lower_is_better",
      -  "higher_is_better",
      -  "neutral"
      -]
    • removedOutput schema / $defs / Experiment / properties / polarity / title
      Removed value: -"Polarity"
    • removedOutput schema / $defs / Experiment / properties / polarity / type
      Removed value: -"string"
    • addedOutput schema / $defs / Experiment / properties / primary_metric_unit
      Added value: +{
      +  "anyOf": [
      +    {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Primary Metric Unit"
      +}
    • addedOutput schema / $defs / Experiment / properties / role / $ref
      Added value: +"#/$defs/ExperimentRole"
    • removedOutput schema / $defs / Experiment / properties / role / enum
      Removed value: -[
      -  "exploratory",
      -  "confirmatory"
      -]
    • removedOutput schema / $defs / Experiment / properties / role / title
      Removed value: -"Role"
    • removedOutput schema / $defs / Experiment / properties / role / type
      Removed value: -"string"
    • removedOutput schema / $defs / Experiment / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "default": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / Experiment / properties / value_domain
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/MetricValueDomain"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedOutput schema / $defs / Experiment / properties / zero_policy
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/MetricZeroPolicy"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedOutput schema / $defs / ExperimentRole
      Added value: +{
      +  "enum": [
      +    "exploratory",
      +    "confirmatory"
      +  ],
      +  "title": "ExperimentRole",
      +  "type": "string"
      +}
    • removedOutput schema / $defs / ExtractPerfettoRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "context": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/ExtractPerfettoRecoveryContext"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null
      -    },
      -    "kind": {
      -      "const": "extract_perfetto",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "extract_perfetto",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ExtractPerfettoRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ExtractPerfettoRecoveryContext
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "extract_perfetto",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "run_id": {
      -      "minLength": 1,
      -      "title": "Run Id",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "run_id"
      -  ],
      -  "title": "ExtractPerfettoRecoveryContext",
      -  "type": "object"
      -}
    • changedOutput schema / $defs / FailedTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / FailedTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • removedOutput schema / $defs / FailurePayload / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • changedOutput schema / $defs / FailurePayload / required
      Previous value: -[
      -  "schema_version",
      -  "ok",
      -  "result",
      -  "error"
      -]New value: +[
      +  "ok",
      +  "result",
      +  "error"
      +]
    • removedOutput schema / $defs / FaultExperimentResult
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "corpus_commit_id": {
      -      "title": "Corpus Commit Id",
      -      "type": "string"
      -    },
      -    "experiment": {
      -      "$ref": "#/$defs/Experiment"
      -    },
      -    "limitations": {
      -      "default": [],
      -      "items": {
      -        "type": "string"
      -      },
      -      "title": "Limitations",
      -      "type": "array"
      -    },
      -    "plan_id": {
      -      "title": "Plan Id",
      -      "type": "string"
      -    },
      -    "result_id": {
      -      "title": "Result Id",
      -      "type": "string"
      -    },
      -    "schema_version": {
      -      "const": 1,
      -      "default": 1,
      -      "title": "Schema Version",
      -      "type": "integer"
      -    },
      -    "treatment_order": {
      -      "items": {
      -        "type": "string"
      -      },
      -      "title": "Treatment Order",
      -      "type": "array"
      -    },
      -    "trial_artifacts": {
      -      "additionalProperties": {
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "title": "Trial Artifacts",
      -      "type": "object"
      -    },
      -    "trials": {
      -      "items": {
      -        "$ref": "#/$defs/Trial"
      -      },
      -      "title": "Trials",
      -      "type": "array"
      -    }
      -  },
      -  "required": [
      -    "result_id",
      -    "plan_id",
      -    "experiment",
      -    "trials",
      -    "treatment_order",
      -    "corpus_commit_id"
      -  ],
      -  "title": "FaultExperimentResult",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / FaultFailurePhase
      Added value: +{
      +  "enum": [
      +    "sidecar_readiness",
      +    "proxy_creation",
      +    "treatment_configuration",
      +    "workload_planning",
      +    "capture_execution",
      +    "measurement_receipt"
      +  ],
      +  "type": "string"
      +}
    • addedOutput schema / $defs / FaultTrialDiagnostic
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "error_code": {
      +      "title": "Error Code",
      +      "type": "string"
      +    },
      +    "message": {
      +      "maxLength": 1000,
      +      "minLength": 1,
      +      "title": "Message",
      +      "type": "string"
      +    },
      +    "next_action": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ManualAction"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "phase": {
      +      "$ref": "#/$defs/FaultFailurePhase"
      +    },
      +    "retryable": {
      +      "title": "Retryable",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "phase",
      +    "error_code",
      +    "message",
      +    "retryable"
      +  ],
      +  "title": "FaultTrialDiagnostic",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / ImportArtifactRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "import_artifact",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "import_artifact",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ImportArtifactRecovery",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / IncludedRunSetMember
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "included": {
      +      "const": true,
      +      "default": true,
      +      "title": "Included",
      +      "type": "boolean"
      +    },
      +    "order": {
      +      "minimum": 0,
      +      "title": "Order",
      +      "type": "integer"
      +    },
      +    "reason": {
      +      "const": null,
      +      "default": null,
      +      "title": "Reason",
      +      "type": "null"
      +    },
      +    "run_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Run Id",
      +      "type": "string"
      +    },
      +    "trial_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Trial Id"
      +    }
      +  },
      +  "required": [
      +    "run_id",
      +    "order"
      +  ],
      +  "title": "IncludedRunSetMember",
      +  "type": "object"
      +}
    • changedOutput schema / $defs / InfrastructureFailedTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / InfrastructureFailedTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • removedOutput schema / $defs / InitializeWorkspaceRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "initialize_workspace",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "initialize_workspace",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "InitializeWorkspaceRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / InspectCapabilitiesRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "inspect_capabilities",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "list_capabilities",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "InspectCapabilitiesRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / InspectWorkloadConfigurationRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "inspect_workload_configuration",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "workload_configuration_status",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "InspectWorkloadConfigurationRecovery",
      -  "type": "object"
      -}
    • changedOutput schema / $defs / InvalidTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / InvalidTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / ManualAction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "instruction": {
      +      "maxLength": 500,
      +      "minLength": 1,
      +      "title": "Instruction",
      +      "type": "string"
      +    },
      +    "kind": {
      +      "const": "manual",
      +      "default": "manual",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "missing_arguments": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Missing Arguments",
      +      "type": "array"
      +    },
      +    "suggested_action": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ActionId"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    }
      +  },
      +  "required": [
      +    "instruction"
      +  ],
      +  "title": "ManualAction",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / ManualConfigurationRecoveryContext
      Removed value: -{
      -  "additionalProperties": false,
      -  "description": "Typed context for configuration that cannot be safely rewritten by MCP.",
      -  "properties": {
      -    "config_path": {
      -      "const": "flameox.toml",
      -      "default": "flameox.toml",
      -      "title": "Config Path",
      -      "type": "string"
      -    },
      -    "diagnostic": {
      -      "maxLength": 500,
      -      "title": "Diagnostic",
      -      "type": "string"
      -    },
      -    "kind": {
      -      "const": "manual_configuration",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "verification_tool": {
      -      "const": "workload_configuration_status",
      -      "default": "workload_configuration_status",
      -      "title": "Verification Tool",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "diagnostic"
      -  ],
      -  "title": "ManualConfigurationRecoveryContext",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ManualRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "context": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/ManualConfigurationRecoveryContext"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null
      -    },
      -    "kind": {
      -      "const": "manual",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "default": null,
      -      "title": "Next Tool",
      -      "type": "null"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind"
      -  ],
      -  "title": "ManualRecovery",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / MeasurementSeriesSelector
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "The semantic identity of one normalized measurement population.",
      +  "properties": {
      +    "aggregation": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Aggregation",
      +      "type": "string"
      +    },
      +    "dimensions": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "maxProperties": 64,
      +      "title": "Dimensions",
      +      "type": "object"
      +    },
      +    "loop_count": {
      +      "anyOf": [
      +        {
      +          "minimum": 1,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Loop Count"
      +    },
      +    "phase": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Phase"
      +    },
      +    "scope": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Scope",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "scope",
      +    "aggregation"
      +  ],
      +  "title": "MeasurementSeriesSelector",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / MetricPolarity
      Added value: +{
      +  "enum": [
      +    "lower_is_better",
      +    "higher_is_better",
      +    "neutral"
      +  ],
      +  "title": "MetricPolarity",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / MetricSource
      Added value: +{
      +  "enum": [
      +    "measurement",
      +    "runtime_resource",
      +    "kernel_validation"
      +  ],
      +  "title": "MetricSource",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / MetricValueDomain
      Added value: +{
      +  "enum": [
      +    "strictly_positive"
      +  ],
      +  "title": "MetricValueDomain",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / MetricZeroPolicy
      Added value: +{
      +  "enum": [
      +    "reject"
      +  ],
      +  "title": "MetricZeroPolicy",
      +  "type": "string"
      +}
    • changedOutput schema / $defs / OracleFailedTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / OracleFailedTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / OracleReceiptBinding
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "The per-run facts needed to form a pair-bound oracle decision.",
      +  "properties": {
      +    "compared_property": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Compared Property",
      +      "type": "string"
      +    },
      +    "input_identity": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Input Identity",
      +      "type": "string"
      +    },
      +    "oracle_identity": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Oracle Identity",
      +      "type": "string"
      +    },
      +    "output_identity": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Output Identity",
      +      "type": "string"
      +    },
      +    "pair_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Pair Id",
      +      "type": "string"
      +    },
      +    "tolerance": {
      +      "$ref": "#/$defs/OracleTolerance"
      +    },
      +    "treatment": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Treatment",
      +      "type": "string"
      +    },
      +    "workload_identity": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Workload Identity",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "pair_id",
      +    "treatment",
      +    "input_identity",
      +    "workload_identity",
      +    "output_identity",
      +    "compared_property",
      +    "oracle_identity",
      +    "tolerance"
      +  ],
      +  "title": "OracleReceiptBinding",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / OracleReceiptV1 / properties / binding
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/OracleReceiptBinding"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedOutput schema / $defs / OracleReceiptV1 / properties / status / $ref
      Added value: +"#/$defs/OracleStatus"
    • removedOutput schema / $defs / OracleReceiptV1 / properties / status / enum
      Removed value: -[
      -  "pass",
      -  "fail",
      -  "inconclusive",
      -  "unsupported"
      -]
    • removedOutput schema / $defs / OracleReceiptV1 / properties / status / title
      Removed value: -"Status"
    • removedOutput schema / $defs / OracleReceiptV1 / properties / status / type
      Removed value: -"string"
    • addedOutput schema / $defs / OracleStatus
      Added value: +{
      +  "enum": [
      +    "pass",
      +    "fail",
      +    "inconclusive",
      +    "unsupported"
      +  ],
      +  "title": "OracleStatus",
      +  "type": "string"
      +}
    • removedOutput schema / $defs / PrepareAdapterRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "prepare_adapter",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "prepare_adapter",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "PrepareAdapterRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / PrepareWorkloadDependenciesRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "prepare_workload_dependencies",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "prepare_workload_dependencies",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "PrepareWorkloadDependenciesRecovery",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / ProfileChange
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "absolute_change": {
      +      "title": "Absolute Change",
      +      "type": "number"
      +    },
      +    "baseline_value": {
      +      "title": "Baseline Value",
      +      "type": "number"
      +    },
      +    "candidate_value": {
      +      "title": "Candidate Value",
      +      "type": "number"
      +    },
      +    "direction": {
      +      "$ref": "#/$defs/ProfileChangeDirection"
      +    },
      +    "file": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "title": "File"
      +    },
      +    "frame_id": {
      +      "title": "Frame Id",
      +      "type": "string"
      +    },
      +    "function": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "title": "Function"
      +    },
      +    "line": {
      +      "anyOf": [
      +        {
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "title": "Line"
      +    },
      +    "metric": {
      +      "title": "Metric",
      +      "type": "string"
      +    },
      +    "relative_change": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "title": "Relative Change"
      +    },
      +    "unit": {
      +      "title": "Unit",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "frame_id",
      +    "function",
      +    "file",
      +    "line",
      +    "metric",
      +    "unit",
      +    "baseline_value",
      +    "candidate_value",
      +    "absolute_change",
      +    "relative_change",
      +    "direction"
      +  ],
      +  "title": "ProfileChange",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ProfileChangeDirection
      Added value: +{
      +  "enum": [
      +    "regressed",
      +    "improved",
      +    "changed",
      +    "unchanged"
      +  ],
      +  "title": "ProfileChangeDirection",
      +  "type": "string"
      +}
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / configure_inference
      Removed value: -"#/$defs/ConfigureInferenceRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / configure_workload
      Removed value: -"#/$defs/ConfigureWorkloadRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / discover_artifacts
      Removed value: -"#/$defs/DiscoverArtifactsRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / discover_runs
      Removed value: -"#/$defs/DiscoverRunsRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / discover_workflows
      Removed value: -"#/$defs/DiscoverWorkflowsRecovery"
    • addedOutput schema / $defs / RecoveryAction / discriminator / mapping / external
      Added value: +"#/$defs/RecoveryExternalAction"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / extract_perfetto
      Removed value: -"#/$defs/ExtractPerfettoRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / import_artifact
      Removed value: -"#/$defs/ImportArtifactRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / initialize_workspace
      Removed value: -"#/$defs/InitializeWorkspaceRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / inspect_capabilities
      Removed value: -"#/$defs/InspectCapabilitiesRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / inspect_workload_configuration
      Removed value: -"#/$defs/InspectWorkloadConfigurationRecovery"
    • changedOutput schema / $defs / RecoveryAction / discriminator / mapping / manual
      Previous value: -"#/$defs/ManualRecovery"New value: +"#/$defs/RecoveryManualAction"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / prepare_adapter
      Removed value: -"#/$defs/PrepareAdapterRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / prepare_workload_dependencies
      Removed value: -"#/$defs/PrepareWorkloadDependenciesRecovery"
    • changedOutput schema / $defs / RecoveryAction / discriminator / mapping / repeat_same_call
      Previous value: -"#/$defs/RepeatSameCallRecovery"New value: +"#/$defs/RetryRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / replan_capture
      Removed value: -"#/$defs/ReplanCaptureRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / replan_inference
      Removed value: -"#/$defs/ReplanInferenceRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / start_capability_setup
      Removed value: -"#/$defs/StartCapabilitySetupRecovery"
    • addedOutput schema / $defs / RecoveryAction / discriminator / mapping / tool
      Added value: +"#/$defs/RecoveryToolAction"
    • changedOutput schema / $defs / RecoveryAction / discriminator / mapping / wait_then_repeat
      Previous value: -"#/$defs/WaitThenRepeatRecovery"New value: +"#/$defs/RetryRecovery"
    • changedOutput schema / $defs / RecoveryAction / oneOf
      Previous value: -[
      -  {
      -    "$ref": "#/$defs/RepeatSameCallRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/WaitThenRepeatRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ReplanCaptureRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/InitializeWorkspaceRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ConfigureWorkloadRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/InspectWorkloadConfigurationRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/StartCapabilitySetupRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/PrepareAdapterRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/PrepareWorkloadDependenciesRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/InspectCapabilitiesRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/DiscoverWorkflowsRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/DiscoverRunsRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/DiscoverArtifactsRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ImportArtifactRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ExtractPerfettoRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ConfigureInferenceRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ReplanInferenceRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ManualRecovery"
      -  }
      -]New value: +[
      +  {
      +    "$ref": "#/$defs/RetryRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/RecoveryToolAction"
      +  },
      +  {
      +    "$ref": "#/$defs/RecoveryManualAction"
      +  },
      +  {
      +    "$ref": "#/$defs/RecoveryExternalAction"
      +  }
      +]
    • addedOutput schema / $defs / RecoveryExternalAction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "instruction": {
      +      "maxLength": 500,
      +      "minLength": 1,
      +      "title": "Instruction",
      +      "type": "string"
      +    },
      +    "kind": {
      +      "const": "external",
      +      "default": "external",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    },
      +    "system": {
      +      "maxLength": 100,
      +      "minLength": 1,
      +      "title": "System",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "instruction",
      +    "system"
      +  ],
      +  "title": "RecoveryExternalAction",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / RecoveryManualAction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "instruction": {
      +      "maxLength": 500,
      +      "minLength": 1,
      +      "title": "Instruction",
      +      "type": "string"
      +    },
      +    "kind": {
      +      "const": "manual",
      +      "default": "manual",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "missing_arguments": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Missing Arguments",
      +      "type": "array"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "instruction"
      +  ],
      +  "title": "RecoveryManualAction",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / RecoveryToolAction
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "One executable MCP recovery action with a concrete tool name.",
      +  "properties": {
      +    "arguments": {
      +      "additionalProperties": true,
      +      "title": "Arguments",
      +      "type": "object"
      +    },
      +    "kind": {
      +      "const": "tool",
      +      "default": "tool",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    },
      +    "tool_name": {
      +      "$ref": "#/$defs/ToolName"
      +    }
      +  },
      +  "required": [
      +    "tool_name"
      +  ],
      +  "title": "RecoveryToolAction",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / RepeatSameCallRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "repeat_same_call",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "default": null,
      -      "title": "Next Tool",
      -      "type": "null"
      -    },
      -    "retry_after_ms": {
      -      "minimum": 0,
      -      "title": "Retry After Ms",
      -      "type": "integer"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "retry_after_ms"
      -  ],
      -  "title": "RepeatSameCallRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ReplanCaptureRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "replan_capture",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "plan_capture",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ReplanCaptureRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ReplanInferenceRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "replan_inference",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "plan_inference_scenario",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ReplanInferenceRecovery",
      -  "type": "object"
      -}
    • changedOutput schema / $defs / ResourcePolicyTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / ResourcePolicyTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / RetryRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "enum": [
      +        "repeat_same_call",
      +        "wait_then_repeat"
      +      ],
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "minimum": 0,
      +      "title": "Retry After Ms",
      +      "type": "integer"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "retry_after_ms"
      +  ],
      +  "title": "RetryRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / RunSet
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "corpus_commit_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Corpus Commit Id",
      +      "type": "string"
      +    },
      +    "created_at": {
      +      "format": "date-time",
      +      "title": "Created At",
      +      "type": "string"
      +    },
      +    "members": {
      +      "items": {
      +        "$ref": "#/$defs/RunSetMember"
      +      },
      +      "maxItems": 1000,
      +      "minItems": 1,
      +      "title": "Members",
      +      "type": "array"
      +    },
      +    "membership_digest": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Membership Digest",
      +      "type": "string"
      +    },
      +    "run_set_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Run Set Id",
      +      "type": "string"
      +    },
      +    "selection": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 16,
      +      "title": "Selection",
      +      "type": "object"
      +    }
      +  },
      +  "required": [
      +    "run_set_id",
      +    "corpus_commit_id",
      +    "selection",
      +    "members",
      +    "membership_digest"
      +  ],
      +  "title": "RunSet",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / RunSetMember
      Added value: +{
      +  "discriminator": {
      +    "mapping": {
      +      "False": "#/$defs/ExcludedRunSetMember",
      +      "True": "#/$defs/IncludedRunSetMember"
      +    },
      +    "propertyName": "included"
      +  },
      +  "oneOf": [
      +    {
      +      "$ref": "#/$defs/IncludedRunSetMember"
      +    },
      +    {
      +      "$ref": "#/$defs/ExcludedRunSetMember"
      +    }
      +  ]
      +}
    • removedOutput schema / $defs / StartCapabilitySetupRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "start_capability_setup",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "start_capability_setup",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "StartCapabilitySetupRecovery",
      -  "type": "object"
      -}
    • changedOutput schema / $defs / SucceededTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / SucceededTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • removedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / result / $ref
      Removed value: -"#/$defs/FaultExperimentResult"
    • addedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / result / additionalProperties
      Added value: +false
    • addedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / result / properties
      Added value: +{
      +  "block_treatment_orders": {
      +    "default": [],
      +    "items": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "title": "Block Treatment Orders",
      +    "type": "array"
      +  },
      +  "comparisons": {
      +    "default": [],
      +    "items": {
      +      "$ref": "#/$defs/ComparisonResult"
      +    },
      +    "title": "Comparisons",
      +    "type": "array"
      +  },
      +  "corpus_commit_id": {
      +    "title": "Corpus Commit Id",
      +    "type": "string"
      +  },
      +  "experiment": {
      +    "$ref": "#/$defs/Experiment"
      +  },
      +  "limitations": {
      +    "default": [],
      +    "items": {
      +      "type": "string"
      +    },
      +    "title": "Limitations",
      +    "type": "array"
      +  },
      +  "measurement_recovery": {
      +    "anyOf": [
      +      {
      +        "$ref": "#/$defs/ManualAction"
      +      },
      +      {
      +        "type": "null"
      +      }
      +    ],
      +    "default": null
      +  },
      +  "plan_id": {
      +    "title": "Plan Id",
      +    "type": "string"
      +  },
      +  "result_id": {
      +    "title": "Result Id",
      +    "type": "string"
      +  },
      +  "run_sets": {
      +    "default": [],
      +    "items": {
      +      "$ref": "#/$defs/RunSet"
      +    },
      +    "title": "Run Sets",
      +    "type": "array"
      +  },
      +  "trial_artifacts": {
      +    "additionalProperties": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "title": "Trial Artifacts",
      +    "type": "object"
      +  },
      +  "trial_diagnostics": {
      +    "additionalProperties": {
      +      "$ref": "#/$defs/FaultTrialDiagnostic"
      +    },
      +    "title": "Trial Diagnostics",
      +    "type": "object"
      +  },
      +  "trials": {
      +    "items": {
      +      "$ref": "#/$defs/Trial"
      +    },
      +    "title": "Trials",
      +    "type": "array"
      +  },
      +  "variants": {
      +    "items": {
      +      "$ref": "#/$defs/Variant"
      +    },
      +    "title": "Variants",
      +    "type": "array"
      +  }
      +}
    • addedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / result / required
      Added value: +[
      +  "result_id",
      +  "plan_id",
      +  "experiment",
      +  "trials",
      +  "variants",
      +  "corpus_commit_id"
      +]
    • addedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / result / title
      Added value: +"FaultExperimentResult"
    • addedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / result / type
      Added value: +"object"
    • removedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • changedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / required
      Previous value: -[
      -  "schema_version",
      -  "ok",
      -  "result",
      -  "error"
      -]New value: +[
      +  "ok",
      +  "result",
      +  "error"
      +]
    • changedOutput schema / $defs / TimedOutTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / TimedOutTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / ToolName
      Added value: +{
      +  "enum": [
      +    "initialize_workspace",
      +    "workload_configuration_status",
      +    "configure_workload",
      +    "list_capabilities",
      +    "start_capability_setup",
      +    "get_capability_setup",
      +    "prepare_adapter",
      +    "prepare_workload_dependencies",
      +    "list_declared_workflows",
      +    "get_declared_workflow",
      +    "plan_fault_experiment",
      +    "plan_capture",
      +    "start_detached_capture",
      +    "get_detached_capture",
      +    "rebuild_catalog",
      +    "list_runs",
      +    "list_artifacts",
      +    "preview_artifact",
      +    "get_native_viewer_plan",
      +    "import_artifact",
      +    "import_xctrace",
      +    "extract_perfetto",
      +    "extract_memray",
      +    "get_extraction",
      +    "extract_nsight_systems",
      +    "extract_nsight_compute",
      +    "extract_compute_sanitizer",
      +    "configure_inference_server",
      +    "list_inference_configurations",
      +    "plan_inference_scenario",
      +    "execute_reduction",
      +    "get_reduction",
      +    "analyze_memory",
      +    "analyze_nsight_compute"
      +  ],
      +  "title": "ToolName",
      +  "type": "string"
      +}
    • changedOutput schema / $defs / UnattemptedTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / UnattemptedTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / UnsignedIntegerValue
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "An exact unsigned integer from a provider with uint64 semantics.",
      +  "properties": {
      +    "kind": {
      +      "const": "unsigned_integer",
      +      "default": "unsigned_integer",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "value": {
      +      "maximum": 18446744073709552000,
      +      "minimum": 0,
      +      "title": "Value",
      +      "type": "integer"
      +    }
      +  },
      +  "required": [
      +    "value"
      +  ],
      +  "title": "UnsignedIntegerValue",
      +  "type": "object"
      +}
    • changedOutput schema / $defs / UnsupportedTrial / properties / parameter_value / anyOf
      Previous value: -[
      -  {
      -    "discriminator": {
      -      "mapping": {
      -        "floating": "#/$defs/FloatingValue",
      -        "integer": "#/$defs/IntegerValue"
      -      },
      -      "propertyName": "kind"
      -    },
      -    "oneOf": [
      -      {
      -        "$ref": "#/$defs/IntegerValue"
      -      },
      -      {
      -        "$ref": "#/$defs/FloatingValue"
      -      }
      -    ]
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "discriminator": {
      +      "mapping": {
      +        "floating": "#/$defs/FloatingValue",
      +        "integer": "#/$defs/IntegerValue",
      +        "unsigned_integer": "#/$defs/UnsignedIntegerValue"
      +      },
      +      "propertyName": "kind"
      +    },
      +    "oneOf": [
      +      {
      +        "$ref": "#/$defs/IntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/UnsignedIntegerValue"
      +      },
      +      {
      +        "$ref": "#/$defs/FloatingValue"
      +      }
      +    ]
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / UnsupportedTrial / properties / schema_version
      Removed value: -{
      -  "const": 2,
      -  "default": 2,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / Variant
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "combination_ids": {
      +      "default": [],
      +      "items": {
      +        "pattern": "^sha256:[0-9a-f]{64}$",
      +        "type": "string"
      +      },
      +      "maxItems": 10000,
      +      "title": "Combination Ids",
      +      "type": "array"
      +    },
      +    "environment_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Environment Id"
      +    },
      +    "environment_ids": {
      +      "default": [],
      +      "items": {
      +        "pattern": "^sha256:[0-9a-f]{64}$",
      +        "type": "string"
      +      },
      +      "maxItems": 1000,
      +      "title": "Environment Ids",
      +      "type": "array"
      +    },
      +    "environment_requirements": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "title": "Environment Requirements",
      +      "type": "object"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "identity_quality": {
      +      "$ref": "#/$defs/VariantIdentityQuality"
      +    },
      +    "limitations": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Limitations",
      +      "type": "array"
      +    },
      +    "name": {
      +      "maxLength": 200,
      +      "title": "Name",
      +      "type": "string"
      +    },
      +    "parameters": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "title": "Parameters",
      +      "type": "object"
      +    },
      +    "source_state_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Source State Id"
      +    },
      +    "source_state_ids": {
      +      "default": [],
      +      "items": {
      +        "pattern": "^sha256:[0-9a-f]{64}$",
      +        "type": "string"
      +      },
      +      "maxItems": 1000,
      +      "title": "Source State Ids",
      +      "type": "array"
      +    },
      +    "treatment_factor": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Treatment Factor"
      +    },
      +    "treatment_identity_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Treatment Identity Id"
      +    },
      +    "treatment_value": {
      +      "$ref": "#/$defs/JsonValue",
      +      "default": null
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    },
      +    "varying_factors": {
      +      "additionalProperties": {
      +        "items": {
      +          "$ref": "#/$defs/JsonValue"
      +        },
      +        "type": "array"
      +      },
      +      "title": "Varying Factors",
      +      "type": "object"
      +    },
      +    "workload_instance_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Workload Instance Id"
      +    },
      +    "workload_instance_ids": {
      +      "default": [],
      +      "items": {
      +        "pattern": "^sha256:[0-9a-f]{64}$",
      +        "type": "string"
      +      },
      +      "maxItems": 1000,
      +      "title": "Workload Instance Ids",
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "variant_id",
      +    "experiment_id",
      +    "name",
      +    "identity_quality"
      +  ],
      +  "title": "Variant",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / VariantIdentityQuality
      Added value: +{
      +  "enum": [
      +    "exact_uniform",
      +    "heterogeneous",
      +    "incomplete"
      +  ],
      +  "title": "VariantIdentityQuality",
      +  "type": "string"
      +}
    • removedOutput schema / $defs / WaitThenRepeatRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "wait_then_repeat",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "default": null,
      -      "title": "Next Tool",
      -      "type": "null"
      -    },
      -    "retry_after_ms": {
      -      "minimum": 0,
      -      "title": "Retry After Ms",
      -      "type": "integer"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "retry_after_ms"
      -  ],
      -  "title": "WaitThenRepeatRecovery",
      -  "type": "object"
      -}
  2. Changed70 schema fields changedv0.1.12
    • removedInput schema / additionalProperties
      Removed value: -false
    • addedOutput schema / $defs / CancelledTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "const": "cancellation",
      +      "default": "cancellation",
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "cancelled",
      +      "default": "cancelled",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason"
      +  ],
      +  "title": "CancelledTrial",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ConfigureInferenceRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "configure_inference",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "enum": [
      +        "configure_inference_server",
      +        "list_inference_configurations"
      +      ],
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ConfigureInferenceRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ConfigureWorkloadRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ConfigureWorkloadRecoveryContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "kind": {
      +      "const": "configure_workload",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "configure_workload",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ConfigureWorkloadRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DigestOracleReceiptValue
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "digest",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "value": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Value",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "value"
      +  ],
      +  "title": "DigestOracleReceiptValue",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DiscoverArtifactsRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "discover_artifacts",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "list_artifacts",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "DiscoverArtifactsRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DiscoverRunsRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "discover_runs",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "list_runs",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "DiscoverRunsRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DiscoverWorkflowsRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "discover_workflows",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "enum": [
      +        "list_declared_workflows",
      +        "get_declared_workflow"
      +      ],
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "DiscoverWorkflowsRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ErrorCode
      Added value: +{
      +  "enum": [
      +    "INVALID_ARGUMENTS",
      +    "WORKSPACE_NOT_FOUND",
      +    "WORKSPACE_INVALID",
      +    "RUN_NOT_FOUND",
      +    "CAPABILITY_UNAVAILABLE",
      +    "INVALID_CAPTURE_PLAN",
      +    "EXECUTION_REFUSED",
      +    "PROCESS_FAILED",
      +    "PROCESS_TIMEOUT",
      +    "PROCESS_CANCELLED",
      +    "ARTIFACT_TOO_LARGE",
      +    "ARTIFACT_INTEGRITY_FAILED",
      +    "ARTIFACT_PARSE_FAILED",
      +    "EVIDENCE_SCHEMA_MISMATCH",
      +    "COMPARISON_INVALID",
      +    "QUERY_BUDGET_EXCEEDED",
      +    "STORAGE_QUOTA_EXCEEDED",
      +    "WRITE_LOCK_TIMEOUT",
      +    "SENSITIVE_ARTIFACT_REFUSED",
      +    "REVISION_CONFLICT",
      +    "STALE_CURSOR",
      +    "INTERNAL_ERROR"
      +  ],
      +  "title": "ErrorCode",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ErrorDetail / properties / code / $ref
      Added value: +"#/$defs/ErrorCode"
    • removedOutput schema / $defs / ErrorDetail / properties / code / title
      Removed value: -"Code"
    • removedOutput schema / $defs / ErrorDetail / properties / code / type
      Removed value: -"string"
    • addedOutput schema / $defs / ExtractPerfettoRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ExtractPerfettoRecoveryContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "kind": {
      +      "const": "extract_perfetto",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "extract_perfetto",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ExtractPerfettoRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / FailedTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "const": "process_failure",
      +      "default": "process_failure",
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "failed",
      +      "default": "failed",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason"
      +  ],
      +  "title": "FailedTrial",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / FailurePayload / properties / ok / default
      Removed value: -false
    • removedOutput schema / $defs / FailurePayload / properties / result / default
      Removed value: -null
    • addedOutput schema / $defs / FailurePayload / properties / schema_version / const
      Added value: +1
    • removedOutput schema / $defs / FailurePayload / properties / schema_version / default
      Removed value: -1
    • changedOutput schema / $defs / FailurePayload / required
      Previous value: -[
      -  "error"
      -]New value: +[
      +  "schema_version",
      +  "ok",
      +  "result",
      +  "error"
      +]
    • addedOutput schema / $defs / FloatingValue
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "A finite floating-point value.",
      +  "properties": {
      +    "kind": {
      +      "const": "floating",
      +      "default": "floating",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "value": {
      +      "title": "Value",
      +      "type": "number"
      +    }
      +  },
      +  "required": [
      +    "value"
      +  ],
      +  "title": "FloatingValue",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ImportArtifactRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "import_artifact",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "import_artifact",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ImportArtifactRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / InfrastructureFailedTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "const": "infrastructure_failure",
      +      "default": "infrastructure_failure",
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "infrastructure_failed",
      +      "default": "infrastructure_failed",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason"
      +  ],
      +  "title": "InfrastructureFailedTrial",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / InitializeWorkspaceRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "initialize_workspace",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "initialize_workspace",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "InitializeWorkspaceRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / InspectCapabilitiesRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "inspect_capabilities",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "list_capabilities",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "InspectCapabilitiesRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / InspectWorkloadConfigurationRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "inspect_workload_configuration",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "workload_configuration_status",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "InspectWorkloadConfigurationRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / IntegerValue
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "An exact integer that can be represented by the evidence schema.",
      +  "properties": {
      +    "kind": {
      +      "const": "integer",
      +      "default": "integer",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "value": {
      +      "maximum": 9223372036854776000,
      +      "minimum": -9223372036854776000,
      +      "title": "Value",
      +      "type": "integer"
      +    }
      +  },
      +  "required": [
      +    "value"
      +  ],
      +  "title": "IntegerValue",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / InvalidTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "enum": [
      +        "oracle_inconclusive",
      +        "oracle_receipt_error"
      +      ],
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "invalid",
      +      "default": "invalid",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason",
      +    "failure_class"
      +  ],
      +  "title": "InvalidTrial",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ManualRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ManualConfigurationRecoveryContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "kind": {
      +      "const": "manual",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "default": null,
      +      "title": "Next Tool",
      +      "type": "null"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind"
      +  ],
      +  "title": "ManualRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / OracleFailedTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "const": "oracle_failure",
      +      "default": "oracle_failure",
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "oracle_failed",
      +      "default": "oracle_failed",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason"
      +  ],
      +  "title": "OracleFailedTrial",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / OracleReceiptValue / additionalProperties
      Removed value: -false
    • addedOutput schema / $defs / OracleReceiptValue / discriminator
      Added value: +{
      +  "mapping": {
      +    "digest": "#/$defs/DigestOracleReceiptValue",
      +    "scalar": "#/$defs/ScalarOracleReceiptValue"
      +  },
      +  "propertyName": "kind"
      +}
    • addedOutput schema / $defs / OracleReceiptValue / oneOf
      Added value: +[
      +  {
      +    "$ref": "#/$defs/ScalarOracleReceiptValue"
      +  },
      +  {
      +    "$ref": "#/$defs/DigestOracleReceiptValue"
      +  }
      +]
    • removedOutput schema / $defs / OracleReceiptValue / properties
      Removed value: -{
      -  "kind": {
      -    "enum": [
      -      "scalar",
      -      "digest"
      -    ],
      -    "title": "Kind",
      -    "type": "string"
      -  },
      -  "value": {
      -    "anyOf": [
      -      {
      -        "type": "boolean"
      -      },
      -      {
      -        "type": "integer"
      -      },
      -      {
      -        "type": "number"
      -      },
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "title": "Value"
      -  }
      -}
    • removedOutput schema / $defs / OracleReceiptValue / required
      Removed value: -[
      -  "kind",
      -  "value"
      -]
    • removedOutput schema / $defs / OracleReceiptValue / title
      Removed value: -"OracleReceiptValue"
    • removedOutput schema / $defs / OracleReceiptValue / type
      Removed value: -"object"
    • addedOutput schema / $defs / PrepareAdapterRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "prepare_adapter",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "prepare_adapter",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "PrepareAdapterRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / PrepareWorkloadDependenciesRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "prepare_workload_dependencies",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "prepare_workload_dependencies",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "PrepareWorkloadDependenciesRecovery",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / RecoveryAction / additionalProperties
      Removed value: -false
    • addedOutput schema / $defs / RecoveryAction / discriminator
      Added value: +{
      +  "mapping": {
      +    "configure_inference": "#/$defs/ConfigureInferenceRecovery",
      +    "configure_workload": "#/$defs/ConfigureWorkloadRecovery",
      +    "discover_artifacts": "#/$defs/DiscoverArtifactsRecovery",
      +    "discover_runs": "#/$defs/DiscoverRunsRecovery",
      +    "discover_workflows": "#/$defs/DiscoverWorkflowsRecovery",
      +    "extract_perfetto": "#/$defs/ExtractPerfettoRecovery",
      +    "import_artifact": "#/$defs/ImportArtifactRecovery",
      +    "initialize_workspace": "#/$defs/InitializeWorkspaceRecovery",
      +    "inspect_capabilities": "#/$defs/InspectCapabilitiesRecovery",
      +    "inspect_workload_configuration": "#/$defs/InspectWorkloadConfigurationRecovery",
      +    "manual": "#/$defs/ManualRecovery",
      +    "prepare_adapter": "#/$defs/PrepareAdapterRecovery",
      +    "prepare_workload_dependencies": "#/$defs/PrepareWorkloadDependenciesRecovery",
      +    "repeat_same_call": "#/$defs/RepeatSameCallRecovery",
      +    "replan_capture": "#/$defs/ReplanCaptureRecovery",
      +    "replan_inference": "#/$defs/ReplanInferenceRecovery",
      +    "start_capability_setup": "#/$defs/StartCapabilitySetupRecovery",
      +    "wait_then_repeat": "#/$defs/WaitThenRepeatRecovery"
      +  },
      +  "propertyName": "kind"
      +}
    • addedOutput schema / $defs / RecoveryAction / oneOf
      Added value: +[
      +  {
      +    "$ref": "#/$defs/RepeatSameCallRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/WaitThenRepeatRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ReplanCaptureRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/InitializeWorkspaceRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ConfigureWorkloadRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/InspectWorkloadConfigurationRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/StartCapabilitySetupRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/PrepareAdapterRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/PrepareWorkloadDependenciesRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/InspectCapabilitiesRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/DiscoverWorkflowsRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/DiscoverRunsRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/DiscoverArtifactsRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ImportArtifactRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ExtractPerfettoRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ConfigureInferenceRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ReplanInferenceRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ManualRecovery"
      +  }
      +]
    • removedOutput schema / $defs / RecoveryAction / properties
      Removed value: -{
      -  "context": {
      -    "anyOf": [
      -      {
      -        "$ref": "#/$defs/RecoveryContext"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null
      -  },
      -  "kind": {
      -    "enum": [
      -      "repeat_same_call",
      -      "wait_then_repeat",
      -      "replan_capture",
      -      "initialize_workspace",
      -      "configure_workload",
      -      "inspect_workload_configuration",
      -      "start_capability_setup",
      -      "prepare_adapter",
      -      "prepare_workload_dependencies",
      -      "inspect_capabilities",
      -      "discover_workflows",
      -      "discover_runs",
      -      "discover_artifacts",
      -      "import_artifact",
      -      "extract_perfetto",
      -      "manual"
      -    ],
      -    "title": "Kind",
      -    "type": "string"
      -  },
      -  "next_tool": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Next Tool"
      -  },
      -  "retry_after_ms": {
      -    "anyOf": [
      -      {
      -        "minimum": 0,
      -        "type": "integer"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Retry After Ms"
      -  },
      -  "safe_to_repeat_same_call": {
      -    "title": "Safe To Repeat Same Call",
      -    "type": "boolean"
      -  }
      -}
    • removedOutput schema / $defs / RecoveryAction / required
      Removed value: -[
      -  "kind",
      -  "safe_to_repeat_same_call"
      -]
    • removedOutput schema / $defs / RecoveryAction / title
      Removed value: -"RecoveryAction"
    • removedOutput schema / $defs / RecoveryAction / type
      Removed value: -"object"
    • removedOutput schema / $defs / RecoveryContext
      Removed value: -{
      -  "discriminator": {
      -    "mapping": {
      -      "configure_workload": "#/$defs/ConfigureWorkloadRecoveryContext",
      -      "extract_perfetto": "#/$defs/ExtractPerfettoRecoveryContext",
      -      "manual_configuration": "#/$defs/ManualConfigurationRecoveryContext"
      -    },
      -    "propertyName": "kind"
      -  },
      -  "oneOf": [
      -    {
      -      "$ref": "#/$defs/ConfigureWorkloadRecoveryContext"
      -    },
      -    {
      -      "$ref": "#/$defs/ManualConfigurationRecoveryContext"
      -    },
      -    {
      -      "$ref": "#/$defs/ExtractPerfettoRecoveryContext"
      -    }
      -  ]
      -}
    • addedOutput schema / $defs / RepeatSameCallRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "repeat_same_call",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "default": null,
      +      "title": "Next Tool",
      +      "type": "null"
      +    },
      +    "retry_after_ms": {
      +      "minimum": 0,
      +      "title": "Retry After Ms",
      +      "type": "integer"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "retry_after_ms"
      +  ],
      +  "title": "RepeatSameCallRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ReplanCaptureRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "replan_capture",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "plan_capture",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ReplanCaptureRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ReplanInferenceRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "replan_inference",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "plan_inference_scenario",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ReplanInferenceRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ResourcePolicyTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "const": "resource_policy",
      +      "default": "resource_policy",
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "resource_policy",
      +      "default": "resource_policy",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason"
      +  ],
      +  "title": "ResourcePolicyTrial",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ScalarOracleReceiptValue
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "scalar",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "value": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "integer"
      +        },
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "title": "Value"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "value"
      +  ],
      +  "title": "ScalarOracleReceiptValue",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / StartCapabilitySetupRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "start_capability_setup",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "start_capability_setup",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "StartCapabilitySetupRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / SucceededTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "const": null,
      +      "default": null,
      +      "title": "Exclusion Reason",
      +      "type": "null"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "const": "none",
      +      "default": "none",
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "succeeded",
      +      "default": "succeeded",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status"
      +  ],
      +  "title": "SucceededTrial",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / error / default
      Removed value: -null
    • removedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / ok / default
      Removed value: -true
    • addedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / schema_version / const
      Added value: +1
    • removedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / properties / schema_version / default
      Removed value: -1
    • changedOutput schema / $defs / SuccessPayload_FaultExperimentResult_ / required
      Previous value: -[
      -  "result"
      -]New value: +[
      +  "schema_version",
      +  "ok",
      +  "result",
      +  "error"
      +]
    • addedOutput schema / $defs / TimedOutTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "const": "timeout",
      +      "default": "timeout",
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "timed_out",
      +      "default": "timed_out",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason"
      +  ],
      +  "title": "TimedOutTrial",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / Trial / additionalProperties
      Removed value: -false
    • addedOutput schema / $defs / Trial / discriminator
      Added value: +{
      +  "mapping": {
      +    "cancelled": "#/$defs/CancelledTrial",
      +    "failed": "#/$defs/FailedTrial",
      +    "infrastructure_failed": "#/$defs/InfrastructureFailedTrial",
      +    "invalid": "#/$defs/InvalidTrial",
      +    "oracle_failed": "#/$defs/OracleFailedTrial",
      +    "resource_policy": "#/$defs/ResourcePolicyTrial",
      +    "succeeded": "#/$defs/SucceededTrial",
      +    "timed_out": "#/$defs/TimedOutTrial",
      +    "unattempted": "#/$defs/UnattemptedTrial",
      +    "unsupported": "#/$defs/UnsupportedTrial"
      +  },
      +  "propertyName": "outcome"
      +}
    • addedOutput schema / $defs / Trial / oneOf
      Added value: +[
      +  {
      +    "$ref": "#/$defs/SucceededTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/UnattemptedTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/FailedTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/TimedOutTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/CancelledTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/UnsupportedTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/ResourcePolicyTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/OracleFailedTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/InfrastructureFailedTrial"
      +  },
      +  {
      +    "$ref": "#/$defs/InvalidTrial"
      +  }
      +]
    • removedOutput schema / $defs / Trial / properties
      Removed value: -{
      -  "attempt": {
      -    "default": 1,
      -    "minimum": 1,
      -    "title": "Attempt",
      -    "type": "integer"
      -  },
      -  "block_id": {
      -    "anyOf": [
      -      {
      -        "maxLength": 200,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Block Id"
      -  },
      -  "combination_id": {
      -    "pattern": "^sha256:[0-9a-f]{64}$",
      -    "title": "Combination Id",
      -    "type": "string"
      -  },
      -  "exclusion_reason": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Exclusion Reason"
      -  },
      -  "experiment_id": {
      -    "maxLength": 200,
      -    "minLength": 1,
      -    "title": "Experiment Id",
      -    "type": "string"
      -  },
      -  "factors": {
      -    "additionalProperties": {
      -      "$ref": "#/$defs/JsonValue"
      -    },
      -    "maxProperties": 8,
      -    "title": "Factors",
      -    "type": "object"
      -  },
      -  "failure_class": {
      -    "default": "none",
      -    "enum": [
      -      "none",
      -      "unattempted",
      -      "oracle_failure",
      -      "oracle_inconclusive",
      -      "oracle_unsupported",
      -      "oracle_receipt_error",
      -      "process_failure",
      -      "timeout",
      -      "cancellation",
      -      "unsupported_environment",
      -      "resource_policy",
      -      "infrastructure_failure"
      -    ],
      -    "title": "Failure Class",
      -    "type": "string"
      -  },
      -  "oracle_receipt": {
      -    "anyOf": [
      -      {
      -        "$ref": "#/$defs/OracleReceiptV1"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null
      -  },
      -  "oracle_receipt_artifact_id": {
      -    "anyOf": [
      -      {
      -        "pattern": "^sha256:[0-9a-f]{64}$",
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Oracle Receipt Artifact Id"
      -  },
      -  "order_in_block": {
      -    "anyOf": [
      -      {
      -        "minimum": 0,
      -        "type": "integer"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Order In Block"
      -  },
      -  "outcome": {
      -    "$ref": "#/$defs/TrialOutcome"
      -  },
      -  "parameter_name": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Parameter Name"
      -  },
      -  "parameter_value_float": {
      -    "anyOf": [
      -      {
      -        "type": "number"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Parameter Value Float"
      -  },
      -  "parameter_value_int": {
      -    "anyOf": [
      -      {
      -        "type": "integer"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Parameter Value Int"
      -  },
      -  "run_id": {
      -    "anyOf": [
      -      {
      -        "maxLength": 200,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Run Id"
      -  },
      -  "schema_version": {
      -    "const": 1,
      -    "default": 1,
      -    "title": "Schema Version",
      -    "type": "integer"
      -  },
      -  "trial_id": {
      -    "maxLength": 200,
      -    "minLength": 1,
      -    "title": "Trial Id",
      -    "type": "string"
      -  },
      -  "validation_status": {
      -    "$ref": "#/$defs/ValidationStatus"
      -  },
      -  "variant_id": {
      -    "maxLength": 200,
      -    "minLength": 1,
      -    "title": "Variant Id",
      -    "type": "string"
      -  }
      -}
    • removedOutput schema / $defs / Trial / required
      Removed value: -[
      -  "trial_id",
      -  "experiment_id",
      -  "variant_id",
      -  "combination_id",
      -  "outcome",
      -  "validation_status"
      -]
    • removedOutput schema / $defs / Trial / title
      Removed value: -"Trial"
    • removedOutput schema / $defs / Trial / type
      Removed value: -"object"
    • removedOutput schema / $defs / TrialOutcome
      Removed value: -{
      -  "enum": [
      -    "unattempted",
      -    "succeeded",
      -    "failed",
      -    "timed_out",
      -    "cancelled",
      -    "unsupported",
      -    "resource_policy",
      -    "oracle_failed",
      -    "infrastructure_failed",
      -    "oom",
      -    "invalid"
      -  ],
      -  "title": "TrialOutcome",
      -  "type": "string"
      -}
    • addedOutput schema / $defs / UnattemptedTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "const": "unattempted",
      +      "default": "unattempted",
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "unattempted",
      +      "default": "unattempted",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason"
      +  ],
      +  "title": "UnattemptedTrial",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / UnsupportedTrial
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "attempt": {
      +      "default": 1,
      +      "minimum": 1,
      +      "title": "Attempt",
      +      "type": "integer"
      +    },
      +    "block_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Block Id"
      +    },
      +    "combination_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Combination Id",
      +      "type": "string"
      +    },
      +    "exclusion_reason": {
      +      "title": "Exclusion Reason",
      +      "type": "string"
      +    },
      +    "experiment_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Experiment Id",
      +      "type": "string"
      +    },
      +    "factors": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 8,
      +      "title": "Factors",
      +      "type": "object"
      +    },
      +    "failure_class": {
      +      "enum": [
      +        "oracle_unsupported",
      +        "unsupported_environment"
      +      ],
      +      "title": "Failure Class",
      +      "type": "string"
      +    },
      +    "oracle_receipt": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/OracleReceiptV1"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_receipt_artifact_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Receipt Artifact Id"
      +    },
      +    "order_in_block": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Order In Block"
      +    },
      +    "outcome": {
      +      "const": "unsupported",
      +      "default": "unsupported",
      +      "title": "Outcome",
      +      "type": "string"
      +    },
      +    "parameter_name": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Name"
      +    },
      +    "parameter_value": {
      +      "anyOf": [
      +        {
      +          "discriminator": {
      +            "mapping": {
      +              "floating": "#/$defs/FloatingValue",
      +              "integer": "#/$defs/IntegerValue"
      +            },
      +            "propertyName": "kind"
      +          },
      +          "oneOf": [
      +            {
      +              "$ref": "#/$defs/IntegerValue"
      +            },
      +            {
      +              "$ref": "#/$defs/FloatingValue"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Parameter Value"
      +    },
      +    "run_id": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Run Id"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "trial_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Trial Id",
      +      "type": "string"
      +    },
      +    "validation_status": {
      +      "$ref": "#/$defs/ValidationStatus"
      +    },
      +    "variant_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Variant Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "trial_id",
      +    "experiment_id",
      +    "variant_id",
      +    "combination_id",
      +    "validation_status",
      +    "exclusion_reason",
      +    "failure_class"
      +  ],
      +  "title": "UnsupportedTrial",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / WaitThenRepeatRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "wait_then_repeat",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "default": null,
      +      "title": "Next Tool",
      +      "type": "null"
      +    },
      +    "retry_after_ms": {
      +      "minimum": 0,
      +      "title": "Retry After Ms",
      +      "type": "integer"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "retry_after_ms"
      +  ],
      +  "title": "WaitThenRepeatRecovery",
      +  "type": "object"
      +}
  3. Addedv0.1.11

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover readOnly, idempotent, and non-destructive behavior, so the description doesn't need to restate safety. It adds useful context by noting the result is 'immutable' and 'completed', which tells the agent the object is final and only available after completion. This goes beyond what annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, direct sentence with no filler or repetition. It fronts the core action and resource immediately, and every word contributes to the meaning. This is exemplary conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter), the presence of an output schema, and comprehensive annotations, the description is largely sufficient. It states the operation, the object type, and the state of the result. It lacks only explicit usage context, such as when this should be invoked relative to fault experiment planning or execution, but this is not critical for a straightforward getter.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description must compensate for parameter documentation. It does associate result_id with a fault experiment result, which gives some meaning beyond the raw schema. However, it does not explain where the result_id comes from or how it relates to other tools, leaving some semantic ambiguity for a single required parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Read') with a precise resource ('fault experiment result') and adds state qualifiers ('immutable completed'). This clearly distinguishes it from sibling tools like plan_fault_experiment or run_fault_experiment, which involve creating or executing experiments rather than reading a completed result.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit guidance on when to use this tool versus alternatives. It does not mention that it should be used after running a fault experiment, nor does it name any sibling tools for comparison. The 'completed' qualifier implies a usage condition, but no direct routing or exclusion is given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/morluto/flameox'

If you have feedback or need assistance with the MCP directory API, please join our Discord server