Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify Analysis #469

Open
wants to merge 3 commits into
base: 1.5
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions TranslatorReasonerAPI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,10 @@ components:
generation of the score).
properties:
resource_id:
$ref: '#/components/schemas/CURIE'
oneOf:
- $ref: '#/components/schemas/CURIE'
description: The id of the resource generating this Analysis
nullable: false
score:
type: number
format: float
Expand All @@ -669,16 +671,19 @@ components:
type: array
items:
$ref: '#/components/schemas/EdgeBinding'
minItems: 1
nullable: false
support_graphs:
type: array
description: >-
This is a list of references to Auxiliary Graph instances
that supported the analysis of a Result as performed by the
reasoning service. Each item in the list is the key of a
single Auxiliary Graph.
nullable: true
nullable: false
items:
type: string
minItems: 0
scoring_method:
type: string
description: >-
Expand All @@ -691,11 +696,14 @@ components:
The attributes of this particular Analysis.
items:
$ref: '#/components/schemas/Attribute'
nullable: true
minItems: 0
nullable: false
additionalProperties: true
required:
- resource_id
- edge_bindings
- support_graphs
- attributes
EdgeBinding:
type: object
description: >-
Expand Down