{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://agenticwebwatch.org/schemas/task-routes.schema.json",
  "title": "AI Agent Observatory Task Routes",
  "type": "object",
  "required": [
    "schema_version",
    "updated_at",
    "tasks"
  ],
  "properties": {
    "generated_at": {
      "type": "string",
      "format": "date-time"
    },
    "schema_version": {
      "type": "string"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "purpose": {
      "type": "string"
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "title",
          "category",
          "agent_question",
          "primary_sources",
          "supporting_sources",
          "best_formats",
          "agent_notes",
          "caveats"
        ],
        "properties": {
          "id": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "agent_question": {
            "type": "string"
          },
          "primary_sources": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "supporting_sources": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "best_formats": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "agent_notes": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "caveats": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "last_updated": {
            "type": "string"
          },
          "setup_value": {
            "type": "string"
          },
          "not_for": {
            "type": "string"
          },
          "confidence": {
            "type": "string"
          }
        },
        "additionalProperties": true
      }
    }
  },
  "additionalProperties": true
}
