@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf:	<http://xmlns.com/foaf/0.1/> .
@prefix owl:	<http://www.w3.org/2002/07/owl#> .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .

foaf:depiction
	rdf:type	rdf:Property , owl:ObjectProperty ;
	owl:inverseOf	foaf:depicts ;
	rdfs:label	"depiction" ;
	rdfs:domain	owl:Thing ;
	rdfs:range	foaf:Image ;
	rdfs:isDefinedBy	foaf: ;
	rdfs:comment	"A depiction of some thing." ;
	<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status>	"testing" .
foaf:depicts
	owl:inverseOf	foaf:depiction .
foaf:img
	rdfs:subPropertyOf	foaf:depiction .