Skip to content
Snippets Groups Projects
Commit 46476c83 authored by Nathan Rini's avatar Nathan Rini Committed by Tim Wickberg
Browse files

openapi/v0.0.39 - populate Job update response

parent 1aa0f91e
No related branches found
No related tags found
No related merge requests found
......@@ -281,10 +281,34 @@
},
"responses": {
"200": {
"description": "job information"
"description": "job updated",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/v0.0.39_job_update_response"
}
},
"application/x-yaml": {
"schema": {
"$ref": "#/components/schemas/v0.0.39_job_update_response"
}
}
}
},
"500": {
"description": "job not found"
"default": {
"description": "job update failed",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/status"
}
},
"application/x-yaml": {
"schema": {
"$ref": "#/components/schemas/status"
}
}
}
}
}
},
......@@ -994,6 +1018,23 @@
},
"type": "object"
},
"v0.0.39_job_update_response": {
"type": "object",
"properties": {
"meta": {
"$ref": "#/components/schemas/v0.0.39_meta"
},
"errors": {
"$ref": "#/components/schemas/v0.0.39_errors"
},
"warnings": {
"$ref": "#/components/schemas/v0.0.39_warnings"
},
"results": {
"$ref": "DATA_PARSER_JOB_ARRAY_RESPONSE_MSG_PTR"
}
}
},
"v0.0.39_job_submission_response": {
"type": "object",
"properties": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment