schemas/notebook.json in losant_rest-1.9.0 vs schemas/notebook.json in losant_rest-1.9.1
- old
+ new
@@ -283,9 +283,35 @@
"type": "object",
"properties": {
"outputType": {
"type": "string",
"enum": [
+ "directory"
+ ]
+ },
+ "directoryName": {
+ "type": "string",
+ "pattern": "^[0-9a-zA-Z_.-]{1,255}$"
+ },
+ "destinationDirectoryTemplate": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 1024
+ }
+ },
+ "required": [
+ "directoryName",
+ "outputType",
+ "destinationDirectoryTemplate"
+ ],
+ "additionalProperties": false
+ },
+ {
+ "type": "object",
+ "properties": {
+ "outputType": {
+ "type": "string",
+ "enum": [
"executionResult"
]
},
"fileName": {
"type": "string",
\ No newline at end of file