TopologyClusters.json 932 Bytes
{
  "type": "object",
  "title": "clusters",
  "required": [
    "clusters"
  ],
  "properties": {
    "clusters": {
      "type": "array",
      "xml": {
        "name": "cluster",
        "wrapped": true
      },
      "items": {
        "type": "object",
        "title": "cluster",
        "required": [
          "id",
          "deviceCount",
          "linkCount",
          "root"
        ],
        "properties": {
          "id": {
            "type": "integer",
            "format": "int64",
            "example": 1
          },
          "deviceCount": {
            "type": "integer",
            "format": "int64",
            "example": 3
          },
          "linkCount": {
            "type": "integer",
            "format": "int64",
            "example": 4
          },
          "root": {
            "type": "string",
            "example": "of:0000000000000001"
          }
        }
      }
    }
  }
}