
<nml:Link id="urn:ogf:network:es.net:2012:PortA"> <nml:Relation type="isSource"> <nml:Port idRef="urn:ogf:network:internet2.edu:2012:LinkA"/> </nml:Relation> </nml:Link>
There is currently no means to use id for LinkA, and idRef for PortA, unless we allow either one of these situations:
It seems I copied and paste incorrectly at the following two examples. Here is the correction.
1) Allow the use of idRef as subject
E.g.:
<nml:Link idRef="urn:ogf:network:es.net:2012:PortA"> <nml:Relation type="isSource"> <nml:Port id="urn:ogf:network:internet2.edu:2012:LinkA"/> </nml:Relation> </nml:Link>
2) Define all inverse relations
E.g.
<nml:Link id="urn:ogf:network:internet2.edu:2012:LinkA"> <nml:Relation type="hasSource"> <nml:Port idRef="urn:ogf:network:es.net:2012:PortA"/> </nml:Relation> </nml:Link>
Sorry about the confusion.