summaryrefslogtreecommitdiffstats
path: root/tests/trig/bug451.trig
diff options
context:
space:
mode:
Diffstat (limited to 'tests/trig/bug451.trig')
-rw-r--r--tests/trig/bug451.trig26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/trig/bug451.trig b/tests/trig/bug451.trig
new file mode 100644
index 0000000..f8c89c6
--- /dev/null
+++ b/tests/trig/bug451.trig
@@ -0,0 +1,26 @@
+@prefix nie: <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix nrl: <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+# HERE "nie:" is used as graph name
+nie: {nie:characterSet
+ a rdf:Property ;
+ rdfs:comment "Characterset in which the content of the InformationElement was created." ;
+ rdfs:domain nie:InformationElement ;
+ rdfs:label "characterSet" ;
+ rdfs:range xsd:string ;
+ nrl:maxCardinality "1" .
+}
+
+<http://www.semanticdesktop.org/ontologies/2007/01/19/nie_metadata#> {
+ nie: a nrl:Ontology ;
+ .
+
+ <http://www.semanticdesktop.org/ontologies/2007/01/19/nie_metadata#>
+ a nrl:GraphMetadata ;
+ nrl:coreGraphMetadataFor
+ nie: .
+}