2026-01-15 11:04:37 +00:00
|
|
|
type: object
|
2026-03-17 20:36:31 +00:00
|
|
|
description: Graph embeddings query response with matching entities and similarity scores
|
2026-01-15 11:04:37 +00:00
|
|
|
properties:
|
|
|
|
|
entities:
|
|
|
|
|
type: array
|
2026-03-17 20:36:31 +00:00
|
|
|
description: Matching graph entities with similarity scores
|
2026-01-15 11:04:37 +00:00
|
|
|
items:
|
2026-03-17 20:36:31 +00:00
|
|
|
type: object
|
|
|
|
|
properties:
|
|
|
|
|
entity:
|
|
|
|
|
$ref: '../../common/RdfValue.yaml'
|
|
|
|
|
description: Matching graph entity
|
|
|
|
|
score:
|
|
|
|
|
type: number
|
|
|
|
|
description: Similarity score (higher is more similar)
|
|
|
|
|
example: 0.92
|
2026-01-15 11:04:37 +00:00
|
|
|
example:
|
2026-03-17 20:36:31 +00:00
|
|
|
- entity: {t: i, i: "https://example.com/person/alice"}
|
|
|
|
|
score: 0.95
|
|
|
|
|
- entity: {t: i, i: "https://example.com/concept/quantum"}
|
|
|
|
|
score: 0.82
|