# Some stuff for rdf:Lists.

# This:
#
#     <rdf:Description>
#       <ex:predicate rdf:parseType="Resource">
#         <li:_1 rdf:resource="#r1" />
#         <li:_2 rdf:resource="#r2" />
#         <li:_3 rdf:resource="#r3" />
#       </ex:predicate>
#     </rdf:Description>
#
# is intended to have the same meaning as the more normal RDF/XML collection:
#
#     <rdf:Description>
#       <ex:predicate rdf:parseType="Collection">
#         <rdf:Description rdf:about="#r1" />
#         <rdf:Description rdf:about="#r2" />
#         <rdf:Description rdf:about="#r3" />
#       </ex:predicate>
#     </rdf:Description>
#
# which is itself just a shorthand for:
#
#     <rdf:Description>
#       <ex:predicate>
#         <rdf:List>
#           <rdf:first><rdf:Description rdf:about="#r1" /></rdf:first>
#           <rdf:rest>
#             <rdf:List>
#               <rdf:first><rdf:Description rdf:about="#r2" /></rdf:first>
#               <rdf:rest>
#                 <rdf:List>
#                   <rdf:first><rdf:Description rdf:about="#r3" /></rdf:first>
#                   <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil" />
#                 </rdf:List>
#               </rdf:rest>
#             </rdf:List>
#           </rdf:rest>
#         </rdf:List>
#       </ex:predicate>
#     </rdf:Description>

## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## 

# This ontology.
@prefix li:       <http://buzzword.org.uk/rdf/list-items/> .

# Stock imports.
@prefix cc:       <http://creativecommons.org/ns#> .
@prefix dc:       <http://purl.org/dc/terms/> .
@prefix dcmitype: <http://purl.org/dc/dcmitype/> .
@prefix foaf:     <http://xmlns.com/foaf/0.1/> .
@prefix link:     <http://www.w3.org/2006/link#> .
@prefix owl:      <http://www.w3.org/2002/07/owl#> .
@prefix rdf:      <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:     <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos:     <http://www.w3.org/2004/02/skos/core#> .
@prefix vs:       <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xhv:      <http://www.w3.org/1999/xhtml/vocab#> .
@prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .

## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##

li:
	a owl:Ontology ;
	rdfs:label "rdf:List Extensions"@en ;
	rdfs:comment "A convenient internal representation of RDF collections. Not intended for RDF in the wild."@en ;
	foaf:maker <http://tobyinkster.co.uk/#i> 
	rdfs:seeAlso li:_1 , li:_2 , li:_3 , li:_10 , li:_100 , li:_1000 , li:_10000 .

## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
