rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/turtle

27 lines
878 B
Plaintext
Raw Normal View History

2019-10-21 08:18:17 +00:00
@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""";
.
}