aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/api/src/main/resources/definitions/Intents.json
blob: f32ef07ba1f63830bfc2d39844a03c6170ffda01 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
  "type": "object",
  "title": "intents",
  "required": [
    "intents"
  ],
  "properties": {
    "intents": {
      "type": "array",
      "xml": {
        "name": "intents",
        "wrapped": true
      },
      "items": {
        "type": "object",
        "title": "host",
        "required": [
          "type",
          "id",
          "appId",
          "state"
        ],
        "properties": {
          "type": {
            "type": "string",
            "example": "HostToHostIntent"
          },
          "id": {
            "type": "string",
            "example": "0x6"
          },
          "appId": {
            "type": "string",
            "example": "org.onosproject.ovsdb"
          },
          "priority": {
            "type": "integer",
            "format": "int64",
            "example": 55
          },
          "resources": {
            "type": "array",
            "xml": {
              "name": "resources",
              "wrapped": true
            },
            "items": {
              "type": "string",
              "example": "46:E4:3C:A4:17:C8/-1"
            },
            "state": {
              "type": "string",
              "example": "INSTALLED"
            }
          }
        }
      }
    }
  }
}