# This ontology.
@prefix d:        <http://ontologi.es/demiblog#> .

# 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 vann:     <http://purl.org/vocab/vann/> .
@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#> .

@prefix status:   <http://ontologi.es/status#> .
@prefix event:    <http://purl.org/NET/c4dm/event.owl#> .
@prefix tl:       <http://purl.org/NET/c4dm/timeline.owl#> .

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

<http://ontologi.es/demiblog>
	dc:title "Definition of the Demiblog Ontology" ;
	foaf:maker <http://tobyinkster.co.uk/#i> ;
	dc:format [ rdfs:label "text/n3" ] ;
	foaf:primaryTopic d: ;
	status:status status:Draft ;
	status:change
		[
			status:new_status status:Sketch ;
			event:agent <http://tobyinkster.co.uk/#i> ;
			event:time [ tl:at "2009-07-05"^^xsd:date ]
		] ,
		[
			status:previous_status status:Sketch ;
			status:new_status status:Draft ;
			event:agent <http://tobyinkster.co.uk/#i> ;
			event:time [ tl:at "2009-07-06"^^xsd:date ]
		] .

d:
	a owl:Ontology ;
	rdfs:label "Demiblog Ontology" ;
	foaf:maker <http://tobyinkster.co.uk/#i> ;
	dc:issued "2009-07-05"^^xsd:date ;
	dc:modified "2009-07-06"^^xsd:date ;
	vann:preferredNamespacePrefix "demiblog" ;
	vann:preferredNamespaceUri "http://ontologi.es/demiblog#" ;
	owl:imports foaf: .

d:textile
	a rdfs:Datatype ;
	rdfs:subClassOf rdf:Literal ;
	rdfs:label "Textile" ;
	rdfs:comment "Demiblog's variant of the Textile markup language." ;
	rdfs:seeAlso <http://en.wikipedia.org/wiki/Textile_(markup_language)> ;
	rdfs:isDefinedBy d: .

d:textile_body
	a owl:DatatypeProperty  , rdf:Property ;
	rdfs:label "textile body" ;
	rdfs:comment "The Textile markup for the main body of a document." ;
	rdfs:domain foaf:Document ;
	rdfs:range d:textile ;
	rdfs:isDefinedBy d: .

d:textile_summary
	a owl:DatatypeProperty , rdf:Property ;
	rdfs:label "textile summary" ;
	rdfs:comment "The Textile markup for the summary of a document." ;
	rdfs:domain foaf:Document ;
	rdfs:range d:textile ;
	rdfs:isDefinedBy d: .

d:article_id
	a rdfs:Datatype ;
	rdfs:subClassOf rdf:Literal ;
	rdfs:label "article identifier" ;
	rdfs:comment "Currently just an integer." ;
	rdfs:isDefinedBy d: .

d:comment_id
	a rdfs:Datatype ; 
	rdfs:subClassOf rdf:Literal ;
	rdfs:label "comment identifier" ;
	rdfs:comment "Currently integer, hyphen, integer." ;
	rdfs:isDefinedBy d: .

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

