schemas/experienceGroups.json in losant_rest-1.8.6 vs schemas/experienceGroups.json in losant_rest-1.8.7

- old
+ new

@@ -62,9 +62,47 @@ "minLength": 1, "maxLength": 255 } }, "additionalProperties": false + }, + "deviceIds": { + "type": "array", + "items": { + "type": "string", + "pattern": "^[A-Fa-f\\d]{24}$" + }, + "maxItems": 1000 + }, + "deviceTags": { + "type": "array", + "items": { + "type": "object", + "properties": { + "key": { + "type": "string", + "pattern": "^[0-9a-zA-Z_-]{1,255}$" + }, + "value": { + "type": "string", + "minLength": 1, + "maxLength": 255 + } + }, + "additionalProperties": false + }, + "maxItems": 100 + }, + "parentId": { + "$oneOf": [ + { + "type": "string", + "pattern": "^[A-Fa-f\\d]{24}$" + }, + { + "type": null + } + ] } } } }, "count": { \ No newline at end of file