trustgraph/specs/api/components/common/Triple.yaml

17 lines
279 B
YAML
Raw Normal View History

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