schemas/experienceGroup.json in losant_rest-1.8.6 vs schemas/experienceGroup.json in losant_rest-1.8.7
- old
+ new
@@ -55,8 +55,46 @@
"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
+ }
+ ]
}
}
}
\ No newline at end of file