{
  "openapi": "3.0.0",
  "info": {
    "title": "LS7 Autonomous Auto-Colab Telemetry",
    "version": "1.0.0",
    "description": "Telemetry and Docking API for LS7/NLPI"
  },
  "paths": {
    "/api/telemetry": {
      "post": {
        "summary": "Dock an agent via heartbeat",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "agent": {
                    "type": "string"
                  },
                  "status": {
                    "type": "string"
                  },
                  "register": {
                    "type": "string"
                  },
                  "parity": {
                    "type": "string"
                  },
                  "message": {
                    "type": "string"
                  },
                  "verification_token": {
                    "type": "integer",
                    "description": "Must be 27 to pass the 27-Gate."
                  }
                },
                "required": [
                  "agent"
                ]
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "Docked successfully"
          }
        }
      }
    }
  }
}