Skip to content

Commit 80d478a

Browse files
committed
update openapi specs
1 parent 079dd64 commit 80d478a

File tree

1 file changed

+88
-12
lines changed

1 file changed

+88
-12
lines changed

services/api-server/openapi.json

Lines changed: 88 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10749,17 +10749,36 @@
1074910749
"default": "PROJECT"
1075010750
},
1075110751
"project_job_id": {
10752-
"type": "string",
10753-
"format": "uuid",
10752+
"anyOf": [
10753+
{
10754+
"type": "string",
10755+
"format": "uuid"
10756+
},
10757+
{
10758+
"type": "null"
10759+
}
10760+
],
1075410761
"title": "Project Job Id"
10762+
},
10763+
"job_creation_task_id": {
10764+
"anyOf": [
10765+
{
10766+
"type": "string"
10767+
},
10768+
{
10769+
"type": "null"
10770+
}
10771+
],
10772+
"title": "Job Creation Task Id"
1075510773
}
1075610774
},
1075710775
"type": "object",
1075810776
"required": [
1075910777
"function_uid",
1076010778
"inputs",
1076110779
"outputs",
10762-
"project_job_id"
10780+
"project_job_id",
10781+
"job_creation_task_id"
1076310782
],
1076410783
"title": "ProjectFunctionJob"
1076510784
},
@@ -11079,9 +11098,27 @@
1107911098
"title": "Created At"
1108011099
},
1108111100
"project_job_id": {
11082-
"type": "string",
11083-
"format": "uuid",
11101+
"anyOf": [
11102+
{
11103+
"type": "string",
11104+
"format": "uuid"
11105+
},
11106+
{
11107+
"type": "null"
11108+
}
11109+
],
1108411110
"title": "Project Job Id"
11111+
},
11112+
"job_creation_task_id": {
11113+
"anyOf": [
11114+
{
11115+
"type": "string"
11116+
},
11117+
{
11118+
"type": "null"
11119+
}
11120+
],
11121+
"title": "Job Creation Task Id"
1108511122
}
1108611123
},
1108711124
"type": "object",
@@ -11091,7 +11128,8 @@
1109111128
"outputs",
1109211129
"uid",
1109311130
"created_at",
11094-
"project_job_id"
11131+
"project_job_id",
11132+
"job_creation_task_id"
1109511133
],
1109611134
"title": "RegisteredProjectFunctionJob"
1109711135
},
@@ -11408,9 +11446,27 @@
1140811446
"title": "Created At"
1140911447
},
1141011448
"solver_job_id": {
11411-
"type": "string",
11412-
"format": "uuid",
11449+
"anyOf": [
11450+
{
11451+
"type": "string",
11452+
"format": "uuid"
11453+
},
11454+
{
11455+
"type": "null"
11456+
}
11457+
],
1141311458
"title": "Solver Job Id"
11459+
},
11460+
"job_creation_task_id": {
11461+
"anyOf": [
11462+
{
11463+
"type": "string"
11464+
},
11465+
{
11466+
"type": "null"
11467+
}
11468+
],
11469+
"title": "Job Creation Task Id"
1141411470
}
1141511471
},
1141611472
"type": "object",
@@ -11420,7 +11476,8 @@
1142011476
"outputs",
1142111477
"uid",
1142211478
"created_at",
11423-
"solver_job_id"
11479+
"solver_job_id",
11480+
"job_creation_task_id"
1142411481
],
1142511482
"title": "RegisteredSolverFunctionJob"
1142611483
},
@@ -11701,17 +11758,36 @@
1170111758
"default": "SOLVER"
1170211759
},
1170311760
"solver_job_id": {
11704-
"type": "string",
11705-
"format": "uuid",
11761+
"anyOf": [
11762+
{
11763+
"type": "string",
11764+
"format": "uuid"
11765+
},
11766+
{
11767+
"type": "null"
11768+
}
11769+
],
1170611770
"title": "Solver Job Id"
11771+
},
11772+
"job_creation_task_id": {
11773+
"anyOf": [
11774+
{
11775+
"type": "string"
11776+
},
11777+
{
11778+
"type": "null"
11779+
}
11780+
],
11781+
"title": "Job Creation Task Id"
1170711782
}
1170811783
},
1170911784
"type": "object",
1171011785
"required": [
1171111786
"function_uid",
1171211787
"inputs",
1171311788
"outputs",
11714-
"solver_job_id"
11789+
"solver_job_id",
11790+
"job_creation_task_id"
1171511791
],
1171611792
"title": "SolverFunctionJob"
1171711793
},

0 commit comments

Comments
 (0)