27 lines
878 B
Plaintext
27 lines
878 B
Plaintext
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>
|
|
@prefix dcat: <http://www.w3.org/ns/dcat#> .
|
|
@prefix dcterms: <http://purl.org/dc/terms/> .
|
|
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
|
@base <http://base.of.relative.iris> .
|
|
|
|
PREFIX test: <http://example.org>
|
|
PrEfIx insensitive: <http://insensitive.example.org>
|
|
|
|
GRAPH <https://trig.testing.graph> {
|
|
<https://example.org/resource/dataset> a dcat:Dataset ;
|
|
|
|
#-----Mandatory-----#
|
|
|
|
dcterms:title 'Test title'@cs, "Test title"@en ;
|
|
dcterms:description """Multiline
|
|
string"""@cs, '''Another
|
|
multiline string '''@en ;
|
|
|
|
#-----Recommended-----#
|
|
dcat:contactPoint [ a foaf:Person ] ;
|
|
test:list ( <http://ex.org> 1 1.1 +1 -1 1.2E+4 "Test" "\"Quote\"" ) ;
|
|
test:datatype "2016-07-20"^^xsd:date ;
|
|
test:text """next multiline""";
|
|
.
|
|
}
|