ContextSourceNotification.json 1.17 KB
Newer Older
canterafonsj's avatar
canterafonsj committed
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
{
  "$schema": "http://json-schema.org/schema#",
  "id": "https://uri.etsi.org/ngsi-ld/schema/ContextSourceNotification.json",
  "title": "NGSI-LD Context Source Notification",
  "description": "NGSI-LD Context Source Notification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uri"
    },
    "type": {
      "type": "string",
      "const": "ContextSourceNotification"
    },
    "subscriptionId": {
      "type": "string",
      "format": "uri"
    },
    "@context": {
      "$ref": "https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/schema/common.json#/definitions/LdContext"
    },
    "notifiedAt": {
      "type": "string",
      "format": "date-time"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/schema/ContextSourceRegistration.json#"
      },
      "minItems": 1
    },
    "triggerReason": {
      "type": "string",
      "enum": [
        "newlyMatching",
        "updated",
        "noLongerMatching"
      ]
    }
  },
  "required": [
    "id",
    "type",
    "subscriptionId",
    "notifiedAt",
    "data",
    "triggerReason"
  ]
}