Skip to content

Commit

Permalink
#37, regen docs & schema
Browse files Browse the repository at this point in the history
  • Loading branch information
finnagin committed Mar 9, 2022
1 parent 2701eb6 commit 7639123
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/fill.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# fill

This operation adds knodes and kedges. Any constraints specified in the TRAPI must be respected. Implementations of this operation are _unique_; their behavior is not fully-specified by the operation parameters.
This operation adds knodes and kedges. Any constraints attached to QNodes and QEdges specified in the TRAPI must be respected. Implementations of this operation are _unique_; their behavior is not fully-specified by the operation parameters.

### examples

Expand Down
2 changes: 1 addition & 1 deletion docs/lookup.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lookup

This operation adds knodes/kedges and (complete) results. It is equivalent to the workflow fill + bind + complete_results. Any constraints specified in the TRAPI must be respected. Implementations of this operation are _unique_; their behavior is not fully-specified by the operation parameters.
This operation adds knodes/kedges and (complete) results. It is equivalent to the workflow fill + bind + complete_results. Any constraints attached to QNodes and QEdges specified in the TRAPI must be respected. Implementations of this operation are _unique_; their behavior is not fully-specified by the operation parameters.

### examples

Expand Down
2 changes: 1 addition & 1 deletion docs/lookup_and_score.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lookup_and_score

This operation adds knodes/kedges, (complete) results, and scores (to the results). It is equivalent to the workflow fill + bind + complete_results + score. Any constraints specified in the TRAPI must be respected. Implementations of this operation are _unique_; their behavior is not fully-specified by the operation parameters.
This operation adds knodes/kedges, (complete) results, and scores (to the results). It is equivalent to the workflow fill + bind + complete_results + score. Any constraints attached to QNodes and QEdges specified in the TRAPI must be respected. Implementations of this operation are _unique_; their behavior is not fully-specified by the operation parameters.

### examples

Expand Down
8 changes: 4 additions & 4 deletions schema/operation.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft-07/schema",
"$id": "https://standards.ncats.io/operation/1.3.0/schema",
"$id": "https://standards.ncats.io/operation/1.4.0/schema",
"anyOf": [
{
"$ref": "#/$defs/OperationAnnotate"
Expand Down Expand Up @@ -254,7 +254,7 @@
},
"OperationFill": {
"type": "object",
"description": "This operation adds knodes and kedges. Any constraints specified in the TRAPI must be respected.",
"description": "This operation adds knodes and kedges. Any constraints attached to QNodes and QEdges specified in the TRAPI must be respected.",
"properties": {
"id": {
"type": "string",
Expand Down Expand Up @@ -798,7 +798,7 @@
},
"OperationLookup": {
"type": "object",
"description": "This operation adds knodes/kedges and (complete) results. It is equivalent to the workflow fill + bind + complete_results. Any constraints specified in the TRAPI must be respected.",
"description": "This operation adds knodes/kedges and (complete) results. It is equivalent to the workflow fill + bind + complete_results. Any constraints attached to QNodes and QEdges specified in the TRAPI must be respected.",
"properties": {
"id": {
"type": "string",
Expand All @@ -816,7 +816,7 @@
},
"OperationLookupAndScore": {
"type": "object",
"description": "This operation adds knodes/kedges, (complete) results, and scores (to the results). It is equivalent to the workflow fill + bind + complete_results + score. Any constraints specified in the TRAPI must be respected.",
"description": "This operation adds knodes/kedges, (complete) results, and scores (to the results). It is equivalent to the workflow fill + bind + complete_results + score. Any constraints attached to QNodes and QEdges specified in the TRAPI must be respected.",
"properties": {
"id": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions schema/workflow.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://json-schema.org/draft-07/schema",
"$id": "https://standards.ncats.io/workflow/1.3.0/schema",
"$id": "https://standards.ncats.io/workflow/1.4.0/schema",
"type": "array",
"items": {
"$ref": "https://standards.ncats.io/operation/1.3.0/schema"
"$ref": "https://standards.ncats.io/operation/1.4.0/schema"
}
}

0 comments on commit 7639123

Please sign in to comment.