diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:40:05 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:40:05 +0000 |
commit | 4038ab95a094b363f1748f3dcb51511a1217475d (patch) | |
tree | 7f393d66a783f91ddd263c78d681e485cf4f45ca /tests/rdfxml/22-rdf-syntax-ns.rdf | |
parent | Initial commit. (diff) | |
download | raptor2-4038ab95a094b363f1748f3dcb51511a1217475d.tar.xz raptor2-4038ab95a094b363f1748f3dcb51511a1217475d.zip |
Adding upstream version 2.0.16.upstream/2.0.16upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/rdfxml/22-rdf-syntax-ns.rdf | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/tests/rdfxml/22-rdf-syntax-ns.rdf b/tests/rdfxml/22-rdf-syntax-ns.rdf new file mode 100644 index 0000000..41d2dfe --- /dev/null +++ b/tests/rdfxml/22-rdf-syntax-ns.rdf @@ -0,0 +1,48 @@ +<?xml version="1.0"?> + +<RDF + xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:s="http://www.w3.org/2000/01/rdf-schema#"> + +<!-- + This is the RDF Schema for the RDF data model as described in the + Resource Description Framework (RDF) Model and Syntax Specification + http://www.w3.org/TR/REC-rdf-syntax --> + +<s:Class rdf:ID="Statement" + s:comment="A triple consisting of a predicate, a subject, and an object." /> + +<s:Class rdf:ID="Property" + s:comment="A name of a property, defining specific meaning for the property" /> + +<s:Class rdf:ID="Bag" + s:comment="An unordered collection" /> + +<s:Class rdf:ID="Seq" + s:comment="An ordered collection" /> + +<s:Class rdf:ID="Alt" + s:comment="A collection of alternatives" /> + +<Property ID="predicate" + s:comment="Identifies the property used in a statement when representing the statement in reified form"> + <s:domain rdf:resource="#Statement" /> + <s:range rdf:resource="#Property" /> +</Property> + +<Property ID="subject" + s:comment="Identifies the resource that a statement is describing when representing the statement in reified form"> + <s:domain rdf:resource="#Statement" /> +</Property> + +<Property ID="object" + s:comment="Identifies the object of a statement when representing the statement in reified form" /> + +<Property ID="type" + s:comment="Identifies the Class of a resource" /> + +<Property ID="value" + s:comment="Identifies the principal value (usually a string) of a property when the property value is a structured resource" /> + +</RDF> |