{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://harness-forge.dev/schemas/runtime/update-action-plan.schema.json",
  "title": "Update Action Plan",
  "type": "object",
  "additionalProperties": false,
  "required": ["operationType", "generatedAt", "items"],
  "properties": {
    "operationType": { "type": "string", "minLength": 1 },
    "generatedAt": { "type": "string", "minLength": 1 },
    "workspaceState": { "type": "string", "minLength": 1 },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "required": ["path", "proposedAction", "reason"],
        "properties": {
          "path": { "type": "string", "minLength": 1 },
          "proposedAction": { "type": "string", "minLength": 1 },
          "reason": { "type": "string", "minLength": 1 },
          "ownershipClass": { "type": "string" },
          "recommendedAlternative": { "type": "string" }
        }
      }
    }
  }
}
