@prefix rddl: <whatever#>.
@prefix xmls: <whgatever2#>.

<> rddl:comment """This is a rather stilted example,
from RDF point of view, designed to look like the sort of thing
which Tim Bray thought the RDDL community was used to.
It introduces an abstract object which is a multiway relation
(like a database record) between the namespace, the supporting document,
and the nature of the document, and the purpose of the relation.
It looks flat, which may appeal.

rddl:resource is, here, the relationship between a namespace and one
of these things.  
""".

<> a rddl:Namespace;
   rddl:resource [
	a 		rddl:validation;
	rddl:nature   	xmls:Schema;
	rddl:title 	"Validate";
	rddl:prose 	"Use this to validate this document";
	rddl:related	<http://example.org/L.xsd>],
[
	a  		rddl:presentation;
	rddl:nature	 xmls:CSSStyleSheet;
	rddl:title 	"Color me pink";
	rddl:related	<http://garish.example.com/L.css>].
	



#________________________________________________

{ [] rddl:nature ?c; rddl:related ?x} => { ?x a ?c}.

{ ?x rddl:entry [ rddl:related ?y; rddl:purpose ?p] } => {?x ?p ?y}.




#	<L.xsd> a xmlschema:schema; rddl:validates <>.
#
#		].
	
#ends