{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://sneakoscope.local/schemas/dfix-patch-plan.schema.json",
  "title": "SKS DFix Patch Plan",
  "type": "object",
  "required": ["schema", "created_at", "patch_plan_present", "mode", "patch_mode", "steps", "safety", "blockers", "passed"],
  "additionalProperties": true,
  "properties": {
    "schema": { "const": "sks.dfix-patch-plan.v1" },
    "created_at": { "type": "string" },
    "patch_plan_present": { "type": "boolean" },
    "mode": { "type": "string" },
    "patch_mode": { "type": "string" },
    "steps": { "type": "array", "items": { "type": "string" } },
    "safety": { "type": "object" },
    "blockers": { "type": "array" },
    "passed": { "type": "boolean" }
  }
}
