{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SEO Report Brief",
  "type": "object",
  "required": [
    "client_context",
    "reporting_period",
    "executive_summary",
    "kpi_notes",
    "next_actions"
  ],
  "properties": {
    "client_context": {
      "type": "string"
    },
    "reporting_period": {
      "type": "string"
    },
    "executive_summary": {
      "type": "string"
    },
    "kpi_notes": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "metric",
          "source",
          "interpretation"
        ],
        "properties": {
          "metric": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "interpretation": {
            "type": "string"
          },
          "confidence": {
            "enum": [
              "verified",
              "partial",
              "missing"
            ]
          }
        }
      }
    },
    "next_actions": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "action",
          "owner",
          "reason"
        ],
        "properties": {
          "action": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "reason": {
            "type": "string"
          },
          "due": {
            "type": "string"
          }
        }
      }
    }
  }
}
