schemas/deviceRecipeBulkCreatePost.json in losant_rest-1.17.0 vs schemas/deviceRecipeBulkCreatePost.json in losant_rest-1.17.1

- old
+ new

@@ -1,18 +1,31 @@ { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { - "nameColumn": { + "csv": { "type": "string" }, + "count": { + "type": "integer" + }, + "nameColumn": { + "type": "string", + "maxLength": 255 + }, "descriptionColumn": { - "type": "string" + "type": "string", + "maxLength": 255 }, - "csv": { - "type": "string" + "gatewayIdColumn": { + "type": "string", + "maxLength": 255 }, + "parentIdColumn": { + "type": "string", + "maxLength": 255 + }, "makeUniqueKeySecret": { "type": "boolean" }, "email": { "type": "string", @@ -21,12 +34,24 @@ }, "callbackUrl": { "type": "string", "format": "uri", "maxLength": 1024 + }, + "gatewayId": { + "type": "string", + "pattern": "^[A-Fa-f\\d]{24}$" + }, + "parentId": { + "oneOf": [ + { + "type": "string", + "pattern": "^[A-Fa-f\\d]{24}$" + }, + { + "type": "null" + } + ] } }, - "additionalProperties": false, - "required": [ - "csv" - ] + "additionalProperties": false } \ No newline at end of file