mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 16:36:21 +02:00
16 lines
279 B
YAML
16 lines
279 B
YAML
type: object
|
|
description: RDF triple (subject-predicate-object)
|
|
required:
|
|
- s
|
|
- p
|
|
- o
|
|
properties:
|
|
s:
|
|
$ref: './RdfValue.yaml'
|
|
description: Subject
|
|
p:
|
|
$ref: './RdfValue.yaml'
|
|
description: Predicate
|
|
o:
|
|
$ref: './RdfValue.yaml'
|
|
description: Object
|