{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Cognivirus Ecological Rollback Packet",
  "type": "object",
  "required": [
    "packet_id",
    "created_at_utc",
    "target_release",
    "dependencies",
    "owner"
  ],
  "properties": {
    "packet_id": {
      "type": "string"
    },
    "created_at_utc": {
      "type": "string",
      "format": "date-time"
    },
    "target_release": {
      "type": "string"
    },
    "owner": {
      "type": "string"
    },
    "dependencies": {
      "type": "object",
      "properties": {
        "model_artifacts": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "adapters": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "prompt_packages": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "memory_snapshots": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "router_versions": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "evaluator_versions": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "permissions": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "aliases": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "external_side_effects": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "tested_at_utc": {
      "type": "string",
      "format": "date-time"
    }
  },
  "additionalProperties": false
}
