Commit 1ae83e12 authored by canterafonsj's avatar canterafonsj
Browse files

Subscriptions finished

parent 3d223c5e
......@@ -11,8 +11,10 @@
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
"format": {
"type": "string"
......@@ -140,7 +142,8 @@
"type": "array",
"minItems": 1,
"items": {
"type": "string"
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
......@@ -180,8 +183,26 @@
"modifiedAt": {
"$ref": "https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/schema/common.json#/definitions/modifiedAt"
},
"required": [
"id",
"type"
"allOf": [
{
"required": [
"id",
"type"
]
},
{
"anyOf": [
{
"required": [
"entities"
]
},
{
"required": [
"watchedAttributes"
]
}
]
}
]
}
......@@ -76,7 +76,8 @@
"type": "string",
"format": "regex"
}
}
},
"required": ["type"]
}
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment