What you want can be done on the syntactic XML level using entities:
<rdf:type rdf:resource="&rdfs;Resource"/>
This would require a local entity definition however:
<!DOCTYPE rdf:RDF [
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
]>
I don't think it can be done using qualified names as attribute values
as in your example.
Martynas
graphityhq.com
On Tue, Oct 29, 2013 at 7:53 PM, Ralph Perniciaro
<[email protected]> wrote:
> All,
>
> Is it possible to include namespace prefixes within resource values on
> export to rdf.
> This is done for property names but not values.
>
> For example can
>
> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
>
> be exported like
>
> <rdf:type rdf:resource="rdfs:Resource"/>
>
> based on prefix
> xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" >
>
> and this to be done for each prefix.
>
> Thanks!
>
> Ralph