Added vocab document w/o aggregation
authorsspeiche
Tue, 12 Feb 2013 16:52:11 -0500
changeset 62 25f3a2f69177
parent 61 2f8a2d58e65c
child 63 ab17a2fc579a
Added vocab document w/o aggregation
ldp.ttl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ldp.ttl	Tue Feb 12 16:52:11 2013 -0500
@@ -0,0 +1,66 @@
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
+@prefix owl: <http://www.w3.org/2002/07/owl#>.
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
+@prefix dcterms: <http://purl.org/dc/terms/>.
+@prefix : <http://www.w3.org/ns/ldp#>.
+
+:
+	a owl:Ontology;
+    dcterms:description "All vocabulary URIs defined in the Linked Data Platform (LDP) namespace."^^rdf:XMLLiteral;
+	dcterms:title "The W3C Linked Data Platform (LDP) Vocabulary";
+	rdfs:label "W3C Linked Data Profile (LDP)";
+	rdfs:seeAlso <http://www.w3.org/2012/ldp>,
+		<http://www.w3.org/2011/09/LinkedData/>.
+		
+:Container
+    a rdfs:Class;
+	rdfs:comment "A Linked Data Platform Resource (LDP-R) that also conforms to 
+	additional patterns and conventions in this document for managing membership.";
+	rdfs:isDefinedBy :;
+	rdfs:label "Container".
+	
+:containerSortPredicates
+ 	a rdf:Property;
+	rdfs:comment "List of predicates that indicate the ascending order of the members in a page.";
+	rdfs:domain :Page;
+	rdfs:isDefinedBy :;
+	rdfs:label "containerSortPredicates";
+	rdfs:range rdf:List.
+	
+:membershipPredicate
+	a rdf:Property;
+	rdfs:comment "Indicates which predicate of the container should be used to determine the membership.";
+	rdfs:domain :Container;
+	rdfs:isDefinedBy :;
+	rdfs:label "membershipPredicate";
+	rdfs:range rdf:Property.
+	
+:membershipSubject
+	a rdf:Property;
+	rdfs:comment "Indicates which resource is the subject for the members of the container.";
+	rdfs:domain :Container;
+	rdfs:isDefinedBy :;
+	rdfs:label "membershipSubject";
+	rdfs:range rdf:Property.
+	
+:nextPage
+	a rdf:Property;
+	rdfs:comment "From a known page, how to indicate the next or last page as rdf:nil.";
+	rdfs:domain :Page;
+	rdfs:isDefinedBy :;
+	rdfs:label "nextPage";
+	rdfs:range rdfs:Resource.
+	
+:Page
+	a rdfs:Class;
+	rdfs:comment "A resource that represents a limited set of members of a LDP Container.";
+	rdfs:isDefinedBy :;
+	rdfs:label "Page".
+	
+:pageOf
+	a rdf:Property;
+	rdfs:comment "Associated a page with its container.";
+	rdfs:domain :Page;
+	rdfs:isDefinedBy :;
+	rdfs:label "pageOf";
+	rdfs:range :Container.
\ No newline at end of file