@prefix ogit: .
@prefix owl: .
@prefix rdfs: .
@prefix rdf: .
@prefix dcterms: .
@prefix xsd: .
ogit:sampleVerb
a owl:ObjectProperty;
rdfs:subPropertyOf ogit:Verb;
rdfs:label "sampleVerb";
dcterms:description """Write a description here.""";
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2015-05-21;";
dcterms:creator "Your name";
dcterms:created "2015-05-21";
dcterms:modified "2015-05-21";
ogit:admin-contact "Your affiliation";
ogit:tech-contact "Your affiliation";
ogit:history (
[
dcterms:identifier "1";
dcterms:date "2015-05-21";
dcterms:description "initial";
dcterms:creator "Your name";
]
# Add more nodes using [ ] here as you see fit.
# Increment the number in the identifier attribute.
);
ogit:allowed (
[
ogit:from ogit:SomeEntity;
ogit:to ogit:SomeOtherEntity;
]
);
.