@prefix t:        <http://buzzword.org.uk/rdf/t#> .
@prefix foaf:     <http://xmlns.com/foaf/0.1/> .
@prefix rdfs:     <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc:       <http://purl.org/dc/terms/> .

<http://tobyinkster.co.uk/#i>
	a foaf:Person ;
	foaf:name "Toby Inkster" ;
	foaf:homepage <http://tobyinkster.co.uk/> ;
	foaf:made t: .

t:Shirt
	a rdfs:Class ;
	rdfs:label "Shirt" ;
	rdfs:comment "An individual instance of a shirt or t-shirt." ;
	rdfs:subClassOf <http://sw.opencyc.org/2008/06/10/concept/Mx4rvViBOZwpEbGdrcN5Y29ycA> .

t:wearer
	a rdfs:Class ;
	rdfs:label "wearer"
	rdfs:comment "Links a shirt to its current or typical wearer." ;
	rdfs:domain t:Shirt ;
	rdfs:range foaf:Agent ;
	rdfs:subPropertyOf <http://sw.opencyc.org/2008/06/10/concept/Mx4rvV7B5ZwpEbGdrcN5Y29ycA> .

t:ShirtDesign
	a rdfs:Class ;
	rdfs:label "Shirt Design" ;
	rdfs:comment "A design of shirt or t-shirt." 
	rdfs:subClassOf rdfs:Class .

t:_example1 dc:title "Example Usage" ;
	= {
		_:myshirt
			a t:Shirt , _:greenshirt ;
			t:wearer [ foaf:name "Joe Bloggs" ] .
		_:greenshirt
			a t:ShirtDesign ;
			dc:description "Medium, green t-shirt" ;
			foaf:maker [ foaf:name "Dee Zyner" ] .
	} .
