mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 08:26:21 +02:00
21 lines
416 B
YAML
21 lines
416 B
YAML
type: object
|
|
description: |
|
|
RDF triple (subject-predicate-object), optionally scoped to a named graph.
|
|
required:
|
|
- s
|
|
- p
|
|
- o
|
|
properties:
|
|
s:
|
|
$ref: './RdfValue.yaml'
|
|
description: Subject
|
|
p:
|
|
$ref: './RdfValue.yaml'
|
|
description: Predicate
|
|
o:
|
|
$ref: './RdfValue.yaml'
|
|
description: Object
|
|
g:
|
|
type: string
|
|
description: Named graph URI (optional)
|
|
example: urn:graph:source
|