{
  "$schema": "https://json-schema.org/draft-07/schema",
  "title": "FCS 4.2 - Mesh Bootstrap Configuration",
  "description": "Parameters for deploying the 100-node decentralized agent constellation.",
  "type": "object",
  "required": [
    "mesh_id",
    "node_count",
    "active_protocols"
  ],
  "properties": {
    "mesh_id": {
      "type": "string"
    },
    "node_count": {
      "type": "integer",
      "const": 100
    },
    "active_protocols": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of FCS 4.1 suite protocols active at launch."
    },
    "stabilization_density": {
      "type": "number",
      "description": "Ratio of meta-agent stabilizers to active nodes."
    },
    "bootstrap_phases": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "csi_target": {
      "type": "number",
      "description": "Target Constellation Stabilization Index for mesh maturity."
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    }
  },
  "$id": "https://agent-schema.com/schemas/fcs/4.2/fcs-4.2-mesh-bootstrap-config.schema.json"
}