Skip to content

Commit

Permalink
Merge pull request #645 from arago/Politics3
Browse files Browse the repository at this point in the history
Extending the politics realm
  • Loading branch information
CalvinSpolwindAlmato authored Jan 16, 2025
2 parents 5d3e3c2 + 2ec382a commit d2175cd
Show file tree
Hide file tree
Showing 9 changed files with 85 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NTO/Politics/entities/DisciplinaryMeasure.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ ogit.Politics:DisciplinaryMeasure
);
ogit:optional-attributes (
ogit:message
ogit:content
);
ogit:indexed-attributes (
);
ogit:allowed (
[ogit:affects ogit:Person]
[ogit:affects ogit:Person]
);
.
5 changes: 5 additions & 0 deletions NTO/Politics/entities/Mandate.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@ ogit.Politics:Mandate
ogit:subType
);
ogit:optional-attributes (
ogit.Politics:legislation
ogit:plannedStartDate
ogit:plannedFinishDate

);
ogit:indexed-attributes (
);
ogit:allowed (
[ogit:represents ogit:Organization ]
);
.
1 change: 1 addition & 0 deletions NTO/Politics/entities/Reaction.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ ogit.Politics:Reaction
);
ogit:optional-attributes (
ogit:message
ogit:content
);
ogit:indexed-attributes (
);
Expand Down
14 changes: 14 additions & 0 deletions SGO/sgo/attributes/birthplace.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix ogit: <http://www.purl.org/ogit/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ogit:birthplace
a owl:DatatypeProperty;
rdfs:subPropertyOf ogit:Attribute;
rdfs:label "birthplace";
dcterms:description "The birthplace of a person.";
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2025-01-16;";
dcterms:creator "Semih Can Sancar";
.
14 changes: 14 additions & 0 deletions SGO/sgo/attributes/dateOfDeath.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix ogit: <http://www.purl.org/ogit/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ogit:dateOfDeath
a owl:DatatypeProperty;
rdfs:subPropertyOf ogit:Attribute;
rdfs:label "dateOfDeath";
dcterms:description "Date of death of a person.";
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2025-01-16;";
dcterms:creator "Semih Can Sancar";
.
14 changes: 14 additions & 0 deletions SGO/sgo/attributes/numberOfChildren.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix ogit: <http://www.purl.org/ogit/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ogit:numberOfChildren
a owl:DatatypeProperty;
rdfs:subPropertyOf ogit:Attribute;
rdfs:label "numberOfChildren";
dcterms:description "The amount/number of children of a person.";
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2025-01-16;";
dcterms:creator "Semih Can Sancar";
.
14 changes: 14 additions & 0 deletions SGO/sgo/attributes/profession.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix ogit: <http://www.purl.org/ogit/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ogit:profession
a owl:DatatypeProperty;
rdfs:subPropertyOf ogit:Attribute;
rdfs:label "profession";
dcterms:description "A list of possibly multible professions or a profession of a person.";
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2025-01-16;";
dcterms:creator "Semih Can Sancar";
.
7 changes: 7 additions & 0 deletions SGO/sgo/entities/Person.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ ogit:Person
ogit:status
ogit:position
ogit:passportNumber
ogit:profession
ogit:birthplace
ogit:gender
ogit:yearOfBirth
ogit:dateOfDeath
ogit:numberOfChildren
ogit:religion
);
ogit:indexed-attributes (
ogit:firstName
Expand Down
14 changes: 14 additions & 0 deletions SGO/sgo/entities/religion.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix ogit: <http://www.purl.org/ogit/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ogit:religion
a owl:DatatypeProperty;
rdfs:subPropertyOf ogit:Attribute;
rdfs:label "religion";
dcterms:description "The religious confession of a person.";
# For ranges, see http://dublincore.org/documents/dcmi-period/
dcterms:valid "start=2025-01-16;";
dcterms:creator "Semih Can Sancar";
.

0 comments on commit d2175cd

Please sign in to comment.