Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding samples #4

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
9 changes: 6 additions & 3 deletions Sample Data/identifiers.ttl
paulc-dstl marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ data:Barry a ies:Person ;
ies:documentedBy data:Barry%3A%20A%20Life ;
ies:hasName data:Bazza ;
ies:isIdentifiedBy data:ABC123456 .
data:ABC123456 ies:inScheme data:MoS_ID .
data:Bazza ies:inScheme data:Brendas_Pet_Names .
data:ABC123456 a ies:Identifier ;
ies:inScheme data:MoS_ID .
data:Bazza a ies:Name ;
ies:inScheme data:Brendas_Pet_Names .

data:Fred a ies:Person ;
ies:isSiblingOf data:Barry ;
ies:hasName data:Freddy .
data:Freddy ies:inScheme data:Brendas_Pet_Names .
data:Freddy a ies:Name ;
ies:inScheme data:Brendas_Pet_Names .

data:Brenda a ies:Person ;
ies:isParentOf data:Barry ;
Expand Down