-
Notifications
You must be signed in to change notification settings - Fork 1
/
SPEC.ttl
17 lines (16 loc) · 972 Bytes
/
SPEC.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@base <https://github.com/ozekik/markdown-ld/blob/master/SPEC.md> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ex: <http://example.com/> .
<#example-entity-foo> rdf:type rdfs:Resource .
<#example-entity-foo> <#example-predicate-1> "Some literal",
"Some literal"@en,
42,
"42"^^xsd:integer,
<http://example.com/someEntity>,
ex:someEntity,
<#example-entity-bar>,
[ ex:name "Alice" ] .
<#example-entity-bar> <#example-predicate-1> "Some literal" .
<#example-entity-bar> <#example-predicate-2> <http://example.com/someEntity> .