Skip to content

Commit 4691bb2

Browse files
author
Jens Kürten
committed
update json schema
1 parent 45c79a5 commit 4691bb2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

json_schemas/workload_response.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@
9494
"title": "Cdb Project Id"
9595
},
9696
"title": {
97-
"description": "Title of the workflow",
97+
"description": "Title of the workflow (max. 255 characters)",
98+
"maxLength": 255,
9899
"title": "Title",
99100
"type": "string"
100101
},
@@ -185,27 +186,29 @@
185186
"description": {
186187
"anyOf": [
187188
{
189+
"maxLength": 1024,
188190
"type": "string"
189191
},
190192
{
191193
"type": "null"
192194
}
193195
],
194196
"default": null,
195-
"description": "Description of the task. If not set, the existing description will be kept.",
197+
"description": "Description of the task. If not set, the existing description will be kept. (max. 1024 characters)",
196198
"title": "Description"
197199
},
198200
"title": {
199201
"anyOf": [
200202
{
203+
"maxLength": 60,
201204
"type": "string"
202205
},
203206
{
204207
"type": "null"
205208
}
206209
],
207210
"default": null,
208-
"description": "Title of the task. If not set, the existing title will be kept.",
211+
"description": "Title of the task. If not set, the existing title will be kept. (max. 60 characters)",
209212
"title": "Title"
210213
}
211214
},

0 commit comments

Comments
 (0)