REST API for obj-nextids
Change-Id: Ibad03de0a6ffa8a478037120c84edfe6722f4d9b
(cherry picked from commit 0acb326963dda08a5eef16134eca5cba84b8e75d)
diff --git a/web/api/src/main/resources/definitions/NextObjectives.json b/web/api/src/main/resources/definitions/NextObjectives.json
new file mode 100644
index 0000000..686e452
--- /dev/null
+++ b/web/api/src/main/resources/definitions/NextObjectives.json
@@ -0,0 +1,25 @@
+{
+ "type": "object",
+ "title": "obj-next-ids",
+ "required": [
+ "obj-next-ids"
+ ],
+ "properties": {
+ "devices": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "title": "nextId",
+ "required": [
+ "groupChain"
+ ],
+ "properties": {
+ "groupChain": {
+ "type": "array",
+ "example": "[0x1234 --> 0x1246 --> port :1, 0x1234 --> 0x12786 --> port :2] "
+ }
+ }
+ }
+ }
+ }
+}