From 40bfb223cbadd78ed051ecb3941081e37072948c Mon Sep 17 00:00:00 2001 From: Can Sancar Date: Thu, 16 Jan 2025 09:39:25 +0100 Subject: [PATCH 1/2] Extending the politics realm --- NTO/Politics/entities/DisciplinaryMeasure.ttl | 3 ++- NTO/Politics/entities/Mandate.ttl | 5 +++++ NTO/Politics/entities/Reaction.ttl | 1 + SGO/sgo/attributes/birthplace.ttl | 14 ++++++++++++++ SGO/sgo/attributes/dateOfDeath.ttl | 14 ++++++++++++++ SGO/sgo/attributes/numberOfChildren.ttl | 14 ++++++++++++++ SGO/sgo/attributes/profession.ttl | 14 ++++++++++++++ SGO/sgo/entities/Person.ttl | 7 +++++++ SGO/sgo/entities/religion.ttl | 14 ++++++++++++++ 9 files changed, 85 insertions(+), 1 deletion(-) create mode 100644 SGO/sgo/attributes/birthplace.ttl create mode 100644 SGO/sgo/attributes/dateOfDeath.ttl create mode 100644 SGO/sgo/attributes/numberOfChildren.ttl create mode 100644 SGO/sgo/attributes/profession.ttl create mode 100644 SGO/sgo/entities/religion.ttl diff --git a/NTO/Politics/entities/DisciplinaryMeasure.ttl b/NTO/Politics/entities/DisciplinaryMeasure.ttl index 5de4b7241a..a140041cb2 100644 --- a/NTO/Politics/entities/DisciplinaryMeasure.ttl +++ b/NTO/Politics/entities/DisciplinaryMeasure.ttl @@ -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] ); . \ No newline at end of file diff --git a/NTO/Politics/entities/Mandate.ttl b/NTO/Politics/entities/Mandate.ttl index 1de6705f5c..c788a5011d 100644 --- a/NTO/Politics/entities/Mandate.ttl +++ b/NTO/Politics/entities/Mandate.ttl @@ -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.Politics:Party ] ); . \ No newline at end of file diff --git a/NTO/Politics/entities/Reaction.ttl b/NTO/Politics/entities/Reaction.ttl index ffbd1d1e2c..c6e2ef7ea1 100644 --- a/NTO/Politics/entities/Reaction.ttl +++ b/NTO/Politics/entities/Reaction.ttl @@ -19,6 +19,7 @@ ogit.Politics:Reaction ); ogit:optional-attributes ( ogit:message + ogit:content ); ogit:indexed-attributes ( ); diff --git a/SGO/sgo/attributes/birthplace.ttl b/SGO/sgo/attributes/birthplace.ttl new file mode 100644 index 0000000000..4eef8eab07 --- /dev/null +++ b/SGO/sgo/attributes/birthplace.ttl @@ -0,0 +1,14 @@ +@prefix ogit: . +@prefix owl: . +@prefix rdfs: . +@prefix dcterms: . + +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"; +. \ No newline at end of file diff --git a/SGO/sgo/attributes/dateOfDeath.ttl b/SGO/sgo/attributes/dateOfDeath.ttl new file mode 100644 index 0000000000..ef66e03ce4 --- /dev/null +++ b/SGO/sgo/attributes/dateOfDeath.ttl @@ -0,0 +1,14 @@ +@prefix ogit: . +@prefix owl: . +@prefix rdfs: . +@prefix dcterms: . + +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"; +. diff --git a/SGO/sgo/attributes/numberOfChildren.ttl b/SGO/sgo/attributes/numberOfChildren.ttl new file mode 100644 index 0000000000..01140a5334 --- /dev/null +++ b/SGO/sgo/attributes/numberOfChildren.ttl @@ -0,0 +1,14 @@ +@prefix ogit: . +@prefix owl: . +@prefix rdfs: . +@prefix dcterms: . + +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"; +. \ No newline at end of file diff --git a/SGO/sgo/attributes/profession.ttl b/SGO/sgo/attributes/profession.ttl new file mode 100644 index 0000000000..5720d3fe77 --- /dev/null +++ b/SGO/sgo/attributes/profession.ttl @@ -0,0 +1,14 @@ +@prefix ogit: . +@prefix owl: . +@prefix rdfs: . +@prefix dcterms: . + +ogit:profession + a owl:DatatypeProperty; + rdfs:subPropertyOf ogit:Attribute; + rdfs:label "profession"; + dcterms:description "The profession of a person."; + # For ranges, see http://dublincore.org/documents/dcmi-period/ + dcterms:valid "start=2025-01-16;"; + dcterms:creator "Semih Can Sancar"; +. \ No newline at end of file diff --git a/SGO/sgo/entities/Person.ttl b/SGO/sgo/entities/Person.ttl index e0a245fe02..e30f592c8e 100644 --- a/SGO/sgo/entities/Person.ttl +++ b/SGO/sgo/entities/Person.ttl @@ -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 diff --git a/SGO/sgo/entities/religion.ttl b/SGO/sgo/entities/religion.ttl new file mode 100644 index 0000000000..8a2e2fd664 --- /dev/null +++ b/SGO/sgo/entities/religion.ttl @@ -0,0 +1,14 @@ +@prefix ogit: . +@prefix owl: . +@prefix rdfs: . +@prefix dcterms: . + +ogit:religion + a owl:DatatypeProperty; + rdfs:subPropertyOf ogit:Attribute; + rdfs:label "religion"; + dcterms:description "The religious confessino of a person."; + # For ranges, see http://dublincore.org/documents/dcmi-period/ + dcterms:valid "start=2025-01-16;"; + dcterms:creator "Semih Can Sancar"; +. From 2ec382adf559a11d4020995874d0e25b6e9ce475 Mon Sep 17 00:00:00 2001 From: Can Sancar Date: Thu, 16 Jan 2025 09:47:52 +0100 Subject: [PATCH 2/2] some changes --- NTO/Politics/entities/Mandate.ttl | 2 +- SGO/sgo/attributes/profession.ttl | 2 +- SGO/sgo/entities/religion.ttl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NTO/Politics/entities/Mandate.ttl b/NTO/Politics/entities/Mandate.ttl index c788a5011d..c6a7941844 100644 --- a/NTO/Politics/entities/Mandate.ttl +++ b/NTO/Politics/entities/Mandate.ttl @@ -26,6 +26,6 @@ ogit.Politics:Mandate ogit:indexed-attributes ( ); ogit:allowed ( - [ogit:represents ogit.Politics:Party ] + [ogit:represents ogit:Organization ] ); . \ No newline at end of file diff --git a/SGO/sgo/attributes/profession.ttl b/SGO/sgo/attributes/profession.ttl index 5720d3fe77..d328a98d20 100644 --- a/SGO/sgo/attributes/profession.ttl +++ b/SGO/sgo/attributes/profession.ttl @@ -7,7 +7,7 @@ ogit:profession a owl:DatatypeProperty; rdfs:subPropertyOf ogit:Attribute; rdfs:label "profession"; - dcterms:description "The profession of a person."; + 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"; diff --git a/SGO/sgo/entities/religion.ttl b/SGO/sgo/entities/religion.ttl index 8a2e2fd664..2214e672a8 100644 --- a/SGO/sgo/entities/religion.ttl +++ b/SGO/sgo/entities/religion.ttl @@ -7,7 +7,7 @@ ogit:religion a owl:DatatypeProperty; rdfs:subPropertyOf ogit:Attribute; rdfs:label "religion"; - dcterms:description "The religious confessino of a person."; + 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";