Skip to content

Commit

Permalink
Merge a20de4d into 1f94605
Browse files Browse the repository at this point in the history
  • Loading branch information
audrium committed Sep 30, 2020
2 parents 1f94605 + a20de4d commit ab7d69c
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 4 deletions.
40 changes: 37 additions & 3 deletions reana_commons/openapi_specifications/reana_server.json
Expand Up @@ -3,7 +3,7 @@
"info": {
"description": "Submit workflows to be run on REANA Cloud",
"title": "REANA Server",
"version": "0.7.0.dev20191230"
"version": "0.7.0a3"
},
"parameters": {},
"paths": {
Expand Down Expand Up @@ -34,9 +34,9 @@
"examples": {
"application/json": {
"announcement": "This is a QA instance",
"docs_url": "http://docs.reana.io/",
"chat_url": "https://mattermost.web.cern.ch/it-dep/channels/reana",
"client_pyvenv": "/afs/cern.ch/user/r/reana/public/reana/bin/activate",
"docs_url": "http://docs.reana.io/",
"forum_url": "https://forum.reana.io/",
"local_users": true,
"pooling_secs": 15,
Expand Down Expand Up @@ -647,11 +647,13 @@
"application/json": [
{
"access_token": "Drmhze6EPcv0fN_81Bj-nA",
"disk_usage": "408",
"email": "user@reana.info",
"id": "00000000-0000-0000-0000-000000000000"
},
{
"access_token": "Drmhze6EPcv0fN_81Bj-nB",
"disk_usage": "408",
"email": "user2@reana.info",
"id": "00000000-0000-0000-0000-000000000001"
}
Expand All @@ -663,6 +665,9 @@
"access_token": {
"type": "string"
},
"disk_usage": {
"type": "string"
},
"email": {
"type": "string"
},
Expand Down Expand Up @@ -732,6 +737,7 @@
"examples": {
"application/json": {
"access_token": "Drmhze6EPcv0fN_81Bj-nA",
"disk_usage": "0",
"email": "user@reana.info",
"id_": "00000000-0000-0000-0000-000000000000"
}
Expand All @@ -741,6 +747,9 @@
"access_token": {
"type": "string"
},
"disk_usage": {
"type": "string"
},
"email": {
"type": "string"
},
Expand Down Expand Up @@ -792,6 +801,30 @@
"required": false,
"type": "boolean"
},
{
"description": "Filter workflows by name.",
"in": "query",
"name": "search",
"required": false,
"type": "string"
},
{
"description": "Sort workflows by creation date (asc, desc).",
"in": "query",
"name": "sort",
"required": false,
"type": "string"
},
{
"description": "Filter workflows by list of statuses.",
"in": "query",
"items": {
"type": "string"
},
"name": "status",
"required": false,
"type": "array"
},
{
"description": "Size format, either 'b' (bytes) or 'k' (kilobytes).",
"in": "query",
Expand Down Expand Up @@ -2464,6 +2497,7 @@
"description": "User information correspoding to the session cookie sent in the request.",
"examples": {
"application/json": {
"disk_usage": "408",
"email": "user@reana.info",
"full_name": "John Doe",
"reana_token": {
Expand Down Expand Up @@ -2544,4 +2578,4 @@
},
"swagger": "2.0",
"tags": []
}
}
Expand Up @@ -3,7 +3,7 @@
"info": {
"description": "Submit and manage workflows",
"title": "REANA Workflow Controller",
"version": "0.7.0.dev20191230"
"version": "0.7.0a3"
},
"parameters": {},
"paths": {
Expand Down Expand Up @@ -33,6 +33,30 @@
"required": false,
"type": "boolean"
},
{
"description": "Filter workflows by name.",
"in": "query",
"name": "search",
"required": false,
"type": "string"
},
{
"description": "Sort workflows by creation date (asc, desc).",
"in": "query",
"name": "sort",
"required": false,
"type": "string"
},
{
"description": "Filter workflows by list of statuses.",
"in": "query",
"items": {
"type": "string"
},
"name": "status",
"required": false,
"type": "array"
},
{
"description": "Size format, either 'b' (bytes) or 'k' (kilobytes).",
"in": "query",
Expand Down

0 comments on commit ab7d69c

Please sign in to comment.