-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'is309/webserver-uses-apihub' of github.com:pcrespov/osp…
…arc-simcore into is309/webserver-uses-apihub
- Loading branch information
Showing
24 changed files
with
590 additions
and
603 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,8 @@ matrix: | |
services: | ||
- docker | ||
|
||
cache: pip | ||
|
||
before_install: | ||
- python --version | ||
- uname -a | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
$schema: http://json-schema.org/draft-07/schema# | ||
$id: https://simcore.io/api/specs/shared/schemas/node-output-tree-api-v0.0.1.yaml | ||
|
||
title: node output tree api | ||
description: nodes using the tree representation for the output | ||
must be able to handle the following requests | ||
type: object | ||
required: | ||
# the validator does not appreciate when required is missing here... and | ||
# sadly does not throw any meaningful error about it... so for now I put this... | ||
- getItemList | ||
- getItem | ||
properties: | ||
getItemList: | ||
description: a list of items making up one level of the tree | ||
type: object | ||
properties: | ||
request: | ||
summary: oa3 json schema description of the request structure. | ||
description: | | ||
If no `rootKey` is specified, the first level of the tree is returned. | ||
The `filter` will return any items matching the filter string as well as any | ||
folder items containing matching items further down the tree. | ||
type: object | ||
properties: | ||
rootKey: | ||
type: string | ||
filter: | ||
type: string | ||
response: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
key: | ||
type: string | ||
label: | ||
type: string | ||
folder: | ||
type: boolean | ||
getItem: | ||
description: get details about an item in the list | ||
type: object | ||
properties: | ||
request: | ||
type: object | ||
required: | ||
- key | ||
properties: | ||
key: | ||
type: string | ||
response: | ||
type: object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
# Please keep alphabetical order | ||
aiohttp==3.3.2 | ||
docker==3.5.0 | ||
requests==2.19.1 | ||
requests==2.20.1 | ||
tenacity==4.12.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.