ContextSourceNotification.json 1.17 KB
Newer Older
canterafonsj's avatar
canterafonsj committed
{
  "$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"
  ]
}