schemas/events.json in losant_rest-1.8.6 vs schemas/events.json in losant_rest-1.8.7
- old
+ new
@@ -68,9 +68,24 @@
"message": {
"type": "string",
"maxLength": 32767
},
"data": {},
+ "deviceId": {
+ "type": "string",
+ "pattern": "^[A-Fa-f\\d]{24}$"
+ },
+ "eventTags": {
+ "type": "object",
+ "patternProperties": {
+ "^[0-9a-zA-Z_-]{1,255}$": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 255
+ }
+ },
+ "additionalProperties": false
+ },
"updates": {
"type": "array",
"items": {
"type": "object",
"properties": {
\ No newline at end of file