summaryrefslogtreecommitdiffstats
path: root/examples/examples-grpc/src/main/resources/schemas/CDSResponsePayloadType.json
blob: a3cbd9f5b2e382880a987b8f483f8c1000284849 (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
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "create-subscription-response": {
      "type": "object",
      "properties": {
        "odl-response": {
          "type": "object",
          "properties": {
            "status": {
              "type": "string"
            }
          },
          "required": [
            "status"
          ]
        }
      },
      "required": [
        "odl-response"
      ]
    }
  },
  "required": [
    "create-subscription-response"
  ]
}