in ontology A I have a class Person with dataproperty hasName and store some data against it:
<person> hasName "Joe Common" .
and a class Vehicle with a hasVINnr;
<vehicle> hasVINnr "12345" .
In ontology B I have class Parking_ticket and in this I would like to reference the A:Person and A:Vehicle's dataproperties like:
<parking_ticket> hasVehicleOwner A:<person>.hasName .
<parking_ticket> hasVehicleVIN A:<vehicle>.hasVINnr .
I.e. I want the new class parking_ticket's dataproperties to "linkto" "pointto" the actual entities data in the ontology A. Like you would do in assebly lang by storing the addressOf for the storage in the parking ticket rather than duplicating the data. This means that when <person>.hasName is updated the <parking_ticket>.hasVehicleOwner data is automatically correct. Is this possible? How can I avoid duplicating the data in parking_ticket and assoc problems? When selecting on the parking_ticket I would like to see the values it points to.