{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://ultimate-pi.local/.pi/harness/specs/steer-state.schema.json",
	"title": "SteerState",
	"type": "object",
	"additionalProperties": false,
	"required": ["schema_version", "run_id", "attempt", "max_attempts", "active"],
	"properties": {
		"schema_version": { "type": "string", "const": "1.0.0" },
		"run_id": { "type": "string", "minLength": 1 },
		"attempt": { "type": "integer", "minimum": 0 },
		"max_attempts": { "type": "integer", "minimum": 1 },
		"active": { "type": "boolean" },
		"steer_approved": { "type": "boolean" },
		"last_review_tier": {
			"type": "string",
			"enum": ["full", "lite"]
		},
		"hygiene_repairs": {
			"type": "integer",
			"minimum": 0
		},
		"burst_used": {
			"type": "boolean"
		}
	}
}
