Skip to content
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