@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ns0: <http://purl.org/vocab/vann/> .
@prefix ns1: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://www.w3.org/ns/ldp#>
  a owl:Ontology ;
  dc:description "Vocabulary URIs defined in the Linked Data Platform (LDP) namespace." ;
  dc:title "The W3C Linked Data Platform (LDP) Vocabulary" ;
  rdfs:label "W3C Linked Data Platform (LDP)" ;
  rdfs:comment "This ontology provides an informal representation of the concepts and terms as defined in the LDP specification.  Consult the LDP specification for normative reference." ;
  dc:publisher <http://www.w3.org/data#W3C> ;
  dc:creator [ foaf:name "Steve Speicher" ], [ foaf:name "John Arwe" ], [ foaf:name "Ashok Malhotra" ] ;
  foaf:maker [ foaf:homepage <http://www.w3.org/2012/ldp> ] ;
  dc:created "2015-02-26"^^xsd:date ;
  ns0:preferredNamespaceUri "http://www.w3.org/ns/ldp#" ;
  ns0:preferredNamespacePrefix "ldp" ;
  rdfs:seeAlso <http://www.w3.org/2012/ldp>, <http://www.w3.org/TR/ldp-ucr/>, <http://www.w3.org/TR/ldp/>, <http://www.w3.org/TR/ldp-paging/>, <http://www.w3.org/2011/09/LinkedData/> .

<http://www.w3.org/ns/ldp#Resource>
  a rdfs:Class ;
  rdfs:comment "A HTTP-addressable resource whose lifecycle is managed by a LDP server." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "Resource" .

<http://www.w3.org/ns/ldp#RDFSource>
  a rdfs:Class ;
  rdfs:subClassOf <http://www.w3.org/ns/ldp#Resource> ;
  rdfs:comment "A Linked Data Platform Resource (LDPR) whose state is represented as RDF." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "RDFSource" .

<http://www.w3.org/ns/ldp#NonRDFSource>
  a rdfs:Class ;
  rdfs:subClassOf <http://www.w3.org/ns/ldp#Resource> ;
  rdfs:comment "A Linked Data Platform Resource (LDPR) whose state is NOT represented as RDF." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "NonRDFSource" .

<http://www.w3.org/ns/ldp#Container>
  a rdfs:Class ;
  rdfs:subClassOf <http://www.w3.org/ns/ldp#RDFSource> ;
  rdfs:comment "A Linked Data Platform RDF Source (LDP-RS) that also conforms to additional patterns and conventions for managing membership. Readers should refer to the specification defining this ontology for the list of behaviors associated with it." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "Container" .

<http://www.w3.org/ns/ldp#BasicContainer>
  a rdfs:Class ;
  rdfs:subClassOf <http://www.w3.org/ns/ldp#Container> ;
  rdfs:comment "An LDPC that uses a predefined predicate to simply link to its contained resources." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "BasicContainer" .

<http://www.w3.org/ns/ldp#DirectContainer>
  a rdfs:Class ;
  rdfs:subClassOf <http://www.w3.org/ns/ldp#Container> ;
  rdfs:comment "An LDPC that is similar to a LDP-DC but it allows an indirection with the ability to list as member a resource, such as a URI representing a real-world object, that is different from the resource that is created." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "DirectContainer" .

<http://www.w3.org/ns/ldp#IndirectContainer>
  a rdfs:Class ;
  rdfs:subClassOf <http://www.w3.org/ns/ldp#Container> ;
  rdfs:comment "An LDPC that has the flexibility of choosing what form the membership triples take." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "IndirectContainer" .

<http://www.w3.org/ns/ldp#hasMemberRelation>
  a rdf:Property ;
  rdfs:comment "Indicates which predicate is used in membership triples, and that the membership triple pattern is < membership-constant-URI , object-of-hasMemberRelation, member-URI >." ;
  ns1:term_status "stable" ;
  rdfs:domain <http://www.w3.org/ns/ldp#Container> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "hasMemberRelation" ;
  rdfs:range rdf:Property .

<http://www.w3.org/ns/ldp#isMemberOfRelation>
  a rdf:Property ;
  rdfs:comment "Indicates which predicate is used in membership triples, and that the membership triple pattern is < member-URI , object-of-isMemberOfRelation, membership-constant-URI >." ;
  ns1:term_status "stable" ;
  rdfs:domain <http://www.w3.org/ns/ldp#Container> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "isMemmberOfRelation" ;
  rdfs:range rdf:Property .

<http://www.w3.org/ns/ldp#membershipResource>
  a rdf:Property ;
  rdfs:comment "Indicates the membership-constant-URI in a membership triple.  Depending upon the membership triple pattern a container uses, as indicated by the presence of ldp:hasMemberRelation or ldp:isMemberOfRelation, the membership-constant-URI might occupy either the subject or object position in membership triples." ;
  ns1:term_status "stable" ;
  rdfs:domain <http://www.w3.org/ns/ldp#Container> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "membershipResource" ;
  rdfs:range rdf:Property .

<http://www.w3.org/ns/ldp#insertedContentRelation>
  a rdf:Property ;
  rdfs:comment "Indicates which triple in a creation request should be used as the member-URI value in the membership triple added when the creation request is successful." ;
  ns1:term_status "stable" ;
  rdfs:domain <http://www.w3.org/ns/ldp#Container> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "insertedContentRelation" ;
  rdfs:range rdf:Property .

<http://www.w3.org/ns/ldp#member>
  a rdf:Property ;
  rdfs:comment "LDP servers should use this predicate as the membership predicate if there is no obvious predicate from an application vocabulary to use." ;
  ns1:term_status "stable" ;
  rdfs:domain <http://www.w3.org/ns/ldp#Resource> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "member" ;
  rdfs:range rdfs:Resource .

<http://www.w3.org/ns/ldp#contains>
  a rdf:Property ;
  rdfs:comment "Links a container with resources created through the container." ;
  ns1:term_status "stable" ;
  rdfs:domain <http://www.w3.org/ns/ldp#Container> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "contains" ;
  rdfs:range rdfs:Resource .

<http://www.w3.org/ns/ldp#MemberSubject>
  a owl:Individual ;
  rdfs:comment "Used to indicate default and typical behavior for ldp:insertedContentRelation, where the member-URI value in the membership triple added when a creation request is successful is the URI assigned to the newly created resource." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "MemberSubject" .

<http://www.w3.org/ns/ldp#PreferContainment>
  a owl:Individual ;
  rdfs:comment "URI identifying a LDPC's containment triples, for example to allow clients to express interest in receiving them." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "PreferContainment" .

<http://www.w3.org/ns/ldp#PreferMembership>
  a owl:Individual ;
  rdfs:comment "URI identifying a LDPC's membership triples, for example to allow clients to express interest in receiving them." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "PreferMembership" .

<http://www.w3.org/ns/ldp#PreferEmptyContainer>
  a owl:Individual ;
  rdfs:comment "Archaic alias for ldp:PreferMinimalContainer" ;
  ns1:term_status "archaic" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  owl:equivalentProperty <http://www.w3.org/ns/ldp#PreferMinimalContainer> ;
  rdfs:seeAlso <http://www.w3.org/ns/ldp#PreferMinimalContainer> ;
  rdfs:label "PreferEmptyContainer" .

<http://www.w3.org/ns/ldp#PreferMinimalContainer>
  a owl:Individual ;
  rdfs:comment "URI identifying the subset of a LDPC's triples present in an empty LDPC, for example to allow clients to express interest in receiving them.  Currently this excludes containment and membership triples, but in the future other exclusions might be added.  This definition is written to automatically exclude those new classes of triples." ;
  ns1:term_status "stable" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "PreferMinimalContainer" .

<http://www.w3.org/ns/ldp#constrainedBy>
  a rdf:Property ;
  rdfs:comment "Links a resource with constraints that the server requires requests like creation and update to conform to." ;
  ns1:term_status "stable" ;
  rdfs:domain <http://www.w3.org/ns/ldp#Resource> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "constrainedBy" ;
  rdfs:range rdfs:Resource .

<http://www.w3.org/ns/ldp#pageSortCriteria>
  a rdf:Property ;
  rdfs:comment "Link to the list of sorting criteria used by the server in a representation.  Typically used on Link response headers as an extension link relation URI in the rel= parameter." ;
  ns1:term_status "testing" ;
  rdfs:domain <http://www.w3.org/ns/ldp#Page> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "pageSortCriteria" ;
  rdfs:range rdf:List .

<http://www.w3.org/ns/ldp#PageSortCriterion>
  a rdfs:Class ;
  rdfs:comment "Element in the list of sorting criteria used by the server to assign container members to pages." ;
  ns1:term_status "testing" ;
  rdfs:label "PageSortCriterion" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> .

<http://www.w3.org/ns/ldp#pageSortPredicate>
  a rdf:Property ;
  rdfs:comment "Predicate used to specify the order of the members across a page sequence's in-sequence page resources; it asserts nothing about the order of members in the representation of a single page." ;
  ns1:term_status "testing" ;
  rdfs:domain <http://www.w3.org/ns/ldp#PageSortCriterion> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "pageSortPredicate" ;
  rdfs:range rdf:Property .

<http://www.w3.org/ns/ldp#pageSortOrder>
  a rdf:Property ;
  rdfs:comment "The ascending/descending/etc order used to order the members across pages in a page sequence." ;
  ns1:term_status "testing" ;
  rdfs:domain <http://www.w3.org/ns/ldp#PageSortCriterion> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "pageSortOrder" ;
  rdfs:range rdf:Resource .

<http://www.w3.org/ns/ldp#pageSortCollation>
  a rdf:Property ;
  rdfs:comment "The collation used to order the members across pages in a page sequence when comparing strings." ;
  ns1:term_status "testing" ;
  rdfs:domain <http://www.w3.org/ns/ldp#PageSortCriterion> ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "pageSortCollation" ;
  rdfs:range rdf:Property .

<http://www.w3.org/ns/ldp#Ascending>
  a owl:Individual ;
  rdfs:comment "Ascending order." ;
  ns1:term_status "testing" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "Ascending" .

<http://www.w3.org/ns/ldp#Descending>
  a owl:Individual ;
  rdfs:comment "Descending order." ;
  ns1:term_status "testing" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "Descending" .

<http://www.w3.org/ns/ldp#Page>
  a rdfs:Class ;
  rdfs:comment "URI signifying that the resource is an in-sequence page resource, as defined by LDP Paging.  Typically used on Link rel='type' response headers." ;
  ns1:term_status "testing" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "Page" .

<http://www.w3.org/ns/ldp#pageSequence>
  a rdf:Property ;
  rdfs:comment "Link to a page sequence resource, as defined by LDP Paging.  Typically used to communicate the sorting criteria used to allocate LDPC members to pages." ;
  ns1:term_status "testing" ;
  rdfs:isDefinedBy <http://www.w3.org/ns/ldp#> ;
  rdfs:label "Page" .
