aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/api/src/main/resources/definitions/TopologyCluster.json
blob: 8adf2dea287ba39e812898a97a190b30a342bdd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  "type": "object",
  "title": "device",
  "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"
    }
  }
}