same names, different namespaces

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

same names, different namespaces

Peter
Dear List

How would I code the following?


   

    <rdf:Description rdf:about="http://purl.org/dc/terms/contributor">
        <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/contributor"/>
    </rdf:Description>

Reply | Threaded
Open this post in threaded view
|

Re: same names, different namespaces

Jiba
Administrator
Hi,

You can use IRIS with full IRI, for example : IRIS["http://purl.org/dc/terms/contributor"]

You can also use namespace, for example default_world.get_namespace("http://purl.org/dc/terms/").contributor

Jiba
Reply | Threaded
Open this post in threaded view
|

Re: same names, different namespaces

Peter
Thanks very much for the guide