Skip to content

Commit

Permalink
Infores allow and deny list (#70)
Browse files Browse the repository at this point in the history
* update schema generation

* update schema

* update examples

* update workflow version
  • Loading branch information
uhbrar authored May 18, 2022
1 parent e7fdb1c commit 6ed31f7
Show file tree
Hide file tree
Showing 3 changed files with 127 additions and 128 deletions.
8 changes: 4 additions & 4 deletions schema/build/generate_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def generate_component(op: str):
"items": {
"type": "string"
},
"description": "List of operation providers (by title listed on SmartAPI registry) that may be used to complete operation. No others can be used. A full list of operation providers with titles is available through the '/services' endpoint of the workflow runner.",
"description": "List of operation providers (by infores ID) that may be used to complete operation. No others will be used. A full list of operation providers for each operation with infores ID's is available through the '/services' endpoint of the workflow runner.",
"example": [
"ARAX Translator Reasoner"
"infores:aragorn"
],
"minLength": 1
},
Expand All @@ -58,9 +58,9 @@ def generate_component(op: str):
"items": {
"type": "string"
},
"description": "List of operation providers (by title listed on SmartAPI registry) that may not be used to complete operation. All others can be used. A full list of operation providers with titles is available through the '/services' endpoint of the worflow runner.",
"description": "List of operation providers (by infores ID) that may not be used to complete operation. All others will be used. A full list of operation providers for each operation with infores ID's is available through the '/services' endpoint of the worflow runner.",
"example": [
"ARAGORN"
"infores:aragorn"
],
"minLength": 1
},
Expand Down
Loading

0 comments on commit 6ed31f7

Please sign in to comment.