From 334c5890a658a13a795994be0e8390bfbcd7afbf Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Wed, 15 Apr 2026 11:19:59 +0200 Subject: [PATCH 01/17] Deprecate Activity in Favor of original EconomicActivity --- NTO/FinancialMarket/entities/Activity.ttl | 2 +- NTO/FinancialMarket/entities/EconomicActivity.ttl | 8 +++++++- NTO/Meteorology/entities/WeatherStation.ttl | 2 +- SGO/sgo/entities/Organization.ttl | 3 ++- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/NTO/FinancialMarket/entities/Activity.ttl b/NTO/FinancialMarket/entities/Activity.ttl index 774174866cc..eae8d8caac9 100644 --- a/NTO/FinancialMarket/entities/Activity.ttl +++ b/NTO/FinancialMarket/entities/Activity.ttl @@ -8,7 +8,7 @@ ogit.FinancialMarket:Activity a rdfs:Class; rdfs:subClassOf ogit:Entity; rdfs:label "Activity"; - dcterms:description "A financial or economic activity performed by an entity."; + dcterms:description "[Deprecated] A financial or economic activity performed by an entity."; dcterms:valid "start=20125-09-05;"; dcterms:creator "Calvin Spolwind"; ogit:scope "NTO"; diff --git a/NTO/FinancialMarket/entities/EconomicActivity.ttl b/NTO/FinancialMarket/entities/EconomicActivity.ttl index e1e2c94bccc..ee82075cd3f 100644 --- a/NTO/FinancialMarket/entities/EconomicActivity.ttl +++ b/NTO/FinancialMarket/entities/EconomicActivity.ttl @@ -13,14 +13,20 @@ ogit.FinancialMarket:EconomicActivity ogit:scope "NTO"; ogit:parent ogit:Node; ogit:mandatory-attributes ( - ogit:id + ogit:type ); ogit:optional-attributes ( ogit:title + ogit:id + ogit:source + ogit:description + ogit:identifierCode + ogit:codeType ogit:description ); ogit:indexed-attributes ( ); ogit:allowed ( + [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] ); . \ No newline at end of file diff --git a/NTO/Meteorology/entities/WeatherStation.ttl b/NTO/Meteorology/entities/WeatherStation.ttl index 1eb0d9aff27..a30a816c726 100644 --- a/NTO/Meteorology/entities/WeatherStation.ttl +++ b/NTO/Meteorology/entities/WeatherStation.ttl @@ -9,7 +9,7 @@ ogit.Meteorology:WeatherStation a rdfs:Class; rdfs:subClassOf ogit:Entity; rdfs:label "WeatherStation"; - dcterms:description "Represents a physical weather observation site."; + dcterms:description "[Deprecated] Represents a physical weather observation site."; dcterms:valid "start=2025-10-15;"; dcterms:creator "Markus Noack"; ogit:scope "NTO"; diff --git a/SGO/sgo/entities/Organization.ttl b/SGO/sgo/entities/Organization.ttl index 04c7172672c..01418b37501 100644 --- a/SGO/sgo/entities/Organization.ttl +++ b/SGO/sgo/entities/Organization.ttl @@ -163,7 +163,8 @@ The ogit/function attribute should be used to tell what kind of grouping an enti [ ogit:organizes ogit:Event ] [ ogit:has ogit.Politics:Reaction ] [ ogit:issues ogit.Legal:LegalNorm ] - [ ogit:conducts ogit.FinancialMarket:Activity ] + [ ogit:conducts ogit.FinancialMarket:Activity ] # [Deprecated] + [ ogit:conducts ogit.FinancialMarket:EconomicActivity ] [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] [ ogit:supports ogit.ServiceManagement:ServiceMapping ] [ ogit:publishes ogit.Publications:Publication ] From 3ffc51d713cf6d8e344825dace3556f6d1128f96 Mon Sep 17 00:00:00 2001 From: Maik Lander Date: Tue, 21 Apr 2026 11:02:38 +0200 Subject: [PATCH 02/17] Ticket to Configuration item with verb affects, [ ogit:affects ogit:ConfigurationItem ] --- NTO/ServiceManagement/entities/Ticket.ttl | 1 + 1 file changed, 1 insertion(+) diff --git a/NTO/ServiceManagement/entities/Ticket.ttl b/NTO/ServiceManagement/entities/Ticket.ttl index 7904b6db6ed..d485a51bcec 100644 --- a/NTO/ServiceManagement/entities/Ticket.ttl +++ b/NTO/ServiceManagement/entities/Ticket.ttl @@ -87,6 +87,7 @@ ogit.ServiceManagement:Ticket [ ogit:affects ogit.MARS:Machine ] [ ogit:affects ogit.Automation:MARSNode ] [ ogit:affects ogit:Account ] + [ ogit:affects ogit:ConfigurationItem ] [ ogit:has ogit:Attachment ] ); . From 4d591a8c142b781d0490ea1abbcc1bceb6986340 Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Tue, 21 Apr 2026 11:03:27 +0200 Subject: [PATCH 03/17] Fix missing prefix --- NTO/FinancialMarket/entities/EconomicActivity.ttl | 1 + 1 file changed, 1 insertion(+) diff --git a/NTO/FinancialMarket/entities/EconomicActivity.ttl b/NTO/FinancialMarket/entities/EconomicActivity.ttl index ee82075cd3f..25d9c6c7c96 100644 --- a/NTO/FinancialMarket/entities/EconomicActivity.ttl +++ b/NTO/FinancialMarket/entities/EconomicActivity.ttl @@ -1,4 +1,5 @@ @prefix ogit.FinancialMarket: . +@prefix ogit.ClassificationStandard: . @prefix ogit: . @prefix rdfs: . @prefix dcterms: . From 2b65ae15c86015c46e2519650e327f2b64cce6ba Mon Sep 17 00:00:00 2001 From: k-wilg-alm-ag Date: Wed, 22 Apr 2026 17:11:13 +0200 Subject: [PATCH 04/17] Update Email.ttl Add ogit.Automation prefix and relatino to "generates AutomationIssue" --- SGO/sgo/entities/Email.ttl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SGO/sgo/entities/Email.ttl b/SGO/sgo/entities/Email.ttl index cc77f0ecb45..f4ed77a0f28 100644 --- a/SGO/sgo/entities/Email.ttl +++ b/SGO/sgo/entities/Email.ttl @@ -3,6 +3,7 @@ @prefix ogit: . @prefix rdfs: . @prefix dcterms: . +@prefix ogit.Automation: . ogit:Email a rdfs:Class; @@ -32,5 +33,6 @@ ogit:Email [ ogit:responds ogit:Person ] [ ogit:has ogit:Attachment ] [ ogit:sameAs ogit:Comment ] + [ ogit:generates ogit.Automation:AutomationIssue ] ); . From 86b7630b9736ab19231fe2a8b7b66d9ed91ec307 Mon Sep 17 00:00:00 2001 From: Daniel Brommer Date: Thu, 23 Apr 2026 16:15:37 +0200 Subject: [PATCH 05/17] Add connection to Form from attachment --- SGO/sgo/entities/Attachment.ttl | 1 + 1 file changed, 1 insertion(+) diff --git a/SGO/sgo/entities/Attachment.ttl b/SGO/sgo/entities/Attachment.ttl index 4f04d6e7a4a..5d8b3c096f0 100644 --- a/SGO/sgo/entities/Attachment.ttl +++ b/SGO/sgo/entities/Attachment.ttl @@ -75,6 +75,7 @@ stored directly in the graph itself or be referenced by an external url link.""" [ ogit:belongs ogit.Factory:Plant ] [ ogit:belongs ogit.SaaS:ComponentInstance ] [ ogit:belongs ogit.CustomerSupport:ChatMessage ] + [ ogit:belongs ogit.Forms:Form ] [ ogit:references ogit:Blob] ); . From 63ac1917db0473afa979666f70cb5d5973697fd1 Mon Sep 17 00:00:00 2001 From: Daniel Brommer Date: Thu, 23 Apr 2026 16:21:02 +0200 Subject: [PATCH 06/17] Fixed Attachment prefix --- SGO/sgo/entities/Attachment.ttl | 1 + 1 file changed, 1 insertion(+) diff --git a/SGO/sgo/entities/Attachment.ttl b/SGO/sgo/entities/Attachment.ttl index 5d8b3c096f0..98f0c5a004c 100644 --- a/SGO/sgo/entities/Attachment.ttl +++ b/SGO/sgo/entities/Attachment.ttl @@ -14,6 +14,7 @@ @prefix ogit.MRO.Aviation: . @prefix ogit.MRP: . @prefix ogit.Factory: . +@prefix ogit.Forms: . @prefix ogit: . @prefix rdfs: . @prefix dcterms: . From 1e72f4409b1c99e142308a5bf405da1627b2974a Mon Sep 17 00:00:00 2001 From: Daniel Brommer Date: Fri, 24 Apr 2026 09:02:44 +0200 Subject: [PATCH 07/17] add attachment connection to form --- NTO/Forms/entities/Form.ttl | 1 + 1 file changed, 1 insertion(+) diff --git a/NTO/Forms/entities/Form.ttl b/NTO/Forms/entities/Form.ttl index 79f2c25fb1e..73be05bf427 100644 --- a/NTO/Forms/entities/Form.ttl +++ b/NTO/Forms/entities/Form.ttl @@ -38,5 +38,6 @@ ogit.Forms:Form [ ogit:contains ogit.Forms:FormField ] [ ogit:complies ogit.Legal:LegalClause ] [ ogit:complies ogit.Legal:LegalNorm ] + [ ogit:has ogit:Attachment ] ); . From 6163e4b55ceb4ec07746804c5353d328e8f626bd Mon Sep 17 00:00:00 2001 From: Daniel Brommer Date: Fri, 24 Apr 2026 09:06:29 +0200 Subject: [PATCH 08/17] removed ogit:belongs to Form from attachment --- SGO/sgo/entities/Attachment.ttl | 1 - 1 file changed, 1 deletion(-) diff --git a/SGO/sgo/entities/Attachment.ttl b/SGO/sgo/entities/Attachment.ttl index 98f0c5a004c..cb20c23429e 100644 --- a/SGO/sgo/entities/Attachment.ttl +++ b/SGO/sgo/entities/Attachment.ttl @@ -76,7 +76,6 @@ stored directly in the graph itself or be referenced by an external url link.""" [ ogit:belongs ogit.Factory:Plant ] [ ogit:belongs ogit.SaaS:ComponentInstance ] [ ogit:belongs ogit.CustomerSupport:ChatMessage ] - [ ogit:belongs ogit.Forms:Form ] [ ogit:references ogit:Blob] ); . From b45f66558e5687e8e8d0233a20b9861bf211de50 Mon Sep 17 00:00:00 2001 From: Daniel Brommer Date: Fri, 24 Apr 2026 09:08:32 +0200 Subject: [PATCH 09/17] removed form prefix from attachment --- SGO/sgo/entities/Attachment.ttl | 1 - 1 file changed, 1 deletion(-) diff --git a/SGO/sgo/entities/Attachment.ttl b/SGO/sgo/entities/Attachment.ttl index cb20c23429e..4f04d6e7a4a 100644 --- a/SGO/sgo/entities/Attachment.ttl +++ b/SGO/sgo/entities/Attachment.ttl @@ -14,7 +14,6 @@ @prefix ogit.MRO.Aviation: . @prefix ogit.MRP: . @prefix ogit.Factory: . -@prefix ogit.Forms: . @prefix ogit: . @prefix rdfs: . @prefix dcterms: . From 1f5e49a95e9153f42d785ce2a2da0c61c129748b Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Mon, 27 Apr 2026 09:06:19 +0200 Subject: [PATCH 10/17] Delete deprecated entities --- NTO/FinancialMarket/entities/Activity.ttl | 30 ------------------- NTO/Meteorology/entities/WeatherStation.ttl | 33 --------------------- SGO/sgo/entities/Organization.ttl | 1 - 3 files changed, 64 deletions(-) delete mode 100644 NTO/FinancialMarket/entities/Activity.ttl delete mode 100644 NTO/Meteorology/entities/WeatherStation.ttl diff --git a/NTO/FinancialMarket/entities/Activity.ttl b/NTO/FinancialMarket/entities/Activity.ttl deleted file mode 100644 index eae8d8caac9..00000000000 --- a/NTO/FinancialMarket/entities/Activity.ttl +++ /dev/null @@ -1,30 +0,0 @@ -@prefix ogit.FinancialMarket: . -@prefix ogit: . -@prefix rdfs: . -@prefix dcterms: . -@prefix ogit.ClassificationStandard: . - -ogit.FinancialMarket:Activity - a rdfs:Class; - rdfs:subClassOf ogit:Entity; - rdfs:label "Activity"; - dcterms:description "[Deprecated] A financial or economic activity performed by an entity."; - dcterms:valid "start=20125-09-05;"; - dcterms:creator "Calvin Spolwind"; - ogit:scope "NTO"; - ogit:parent ogit:Node; - ogit:mandatory-attributes ( - ogit:type - ); - ogit:optional-attributes ( - ogit:source - ogit:description - ogit:identifierCode - ogit:codeType - ); - ogit:indexed-attributes ( - ); - ogit:allowed ( - [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] - ); -. \ No newline at end of file diff --git a/NTO/Meteorology/entities/WeatherStation.ttl b/NTO/Meteorology/entities/WeatherStation.ttl deleted file mode 100644 index a30a816c726..00000000000 --- a/NTO/Meteorology/entities/WeatherStation.ttl +++ /dev/null @@ -1,33 +0,0 @@ -@prefix dcterms: . -@prefix ogit: . -@prefix ogit.Meteorology: . -@prefix owl: . -@prefix rdfs: . - - -ogit.Meteorology:WeatherStation - a rdfs:Class; - rdfs:subClassOf ogit:Entity; - rdfs:label "WeatherStation"; - dcterms:description "[Deprecated] Represents a physical weather observation site."; - dcterms:valid "start=2025-10-15;"; - dcterms:creator "Markus Noack"; - ogit:scope "NTO"; - ogit:parent ogit:Node; - ogit:mandatory-attributes ( - ogit:latitude - ogit:longitude - ogit:altitude - ); - ogit:optional-attributes ( - ogit:name - ); - ogit:indexed-attributes ( - ogit:name - ); - ogit:allowed ( - [ ogit:locatedIn ogit:Region ] - [ ogit:locatedIn ogit:Location ] - [ ogit:generates ogit:Timeseries ] - ); -. diff --git a/SGO/sgo/entities/Organization.ttl b/SGO/sgo/entities/Organization.ttl index 01418b37501..8ce96353716 100644 --- a/SGO/sgo/entities/Organization.ttl +++ b/SGO/sgo/entities/Organization.ttl @@ -163,7 +163,6 @@ The ogit/function attribute should be used to tell what kind of grouping an enti [ ogit:organizes ogit:Event ] [ ogit:has ogit.Politics:Reaction ] [ ogit:issues ogit.Legal:LegalNorm ] - [ ogit:conducts ogit.FinancialMarket:Activity ] # [Deprecated] [ ogit:conducts ogit.FinancialMarket:EconomicActivity ] [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] [ ogit:supports ogit.ServiceManagement:ServiceMapping ] From 0813bc44a6f0162c6fec976fd6596c3ea9f7026c Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Wed, 15 Apr 2026 11:19:59 +0200 Subject: [PATCH 11/17] Deprecate Activity in Favor of original EconomicActivity --- NTO/FinancialMarket/entities/Activity.ttl | 2 +- NTO/FinancialMarket/entities/EconomicActivity.ttl | 8 +++++++- NTO/Meteorology/entities/WeatherStation.ttl | 2 +- SGO/sgo/entities/Organization.ttl | 3 ++- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/NTO/FinancialMarket/entities/Activity.ttl b/NTO/FinancialMarket/entities/Activity.ttl index 774174866cc..eae8d8caac9 100644 --- a/NTO/FinancialMarket/entities/Activity.ttl +++ b/NTO/FinancialMarket/entities/Activity.ttl @@ -8,7 +8,7 @@ ogit.FinancialMarket:Activity a rdfs:Class; rdfs:subClassOf ogit:Entity; rdfs:label "Activity"; - dcterms:description "A financial or economic activity performed by an entity."; + dcterms:description "[Deprecated] A financial or economic activity performed by an entity."; dcterms:valid "start=20125-09-05;"; dcterms:creator "Calvin Spolwind"; ogit:scope "NTO"; diff --git a/NTO/FinancialMarket/entities/EconomicActivity.ttl b/NTO/FinancialMarket/entities/EconomicActivity.ttl index e1e2c94bccc..ee82075cd3f 100644 --- a/NTO/FinancialMarket/entities/EconomicActivity.ttl +++ b/NTO/FinancialMarket/entities/EconomicActivity.ttl @@ -13,14 +13,20 @@ ogit.FinancialMarket:EconomicActivity ogit:scope "NTO"; ogit:parent ogit:Node; ogit:mandatory-attributes ( - ogit:id + ogit:type ); ogit:optional-attributes ( ogit:title + ogit:id + ogit:source + ogit:description + ogit:identifierCode + ogit:codeType ogit:description ); ogit:indexed-attributes ( ); ogit:allowed ( + [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] ); . \ No newline at end of file diff --git a/NTO/Meteorology/entities/WeatherStation.ttl b/NTO/Meteorology/entities/WeatherStation.ttl index 1eb0d9aff27..a30a816c726 100644 --- a/NTO/Meteorology/entities/WeatherStation.ttl +++ b/NTO/Meteorology/entities/WeatherStation.ttl @@ -9,7 +9,7 @@ ogit.Meteorology:WeatherStation a rdfs:Class; rdfs:subClassOf ogit:Entity; rdfs:label "WeatherStation"; - dcterms:description "Represents a physical weather observation site."; + dcterms:description "[Deprecated] Represents a physical weather observation site."; dcterms:valid "start=2025-10-15;"; dcterms:creator "Markus Noack"; ogit:scope "NTO"; diff --git a/SGO/sgo/entities/Organization.ttl b/SGO/sgo/entities/Organization.ttl index 04c7172672c..01418b37501 100644 --- a/SGO/sgo/entities/Organization.ttl +++ b/SGO/sgo/entities/Organization.ttl @@ -163,7 +163,8 @@ The ogit/function attribute should be used to tell what kind of grouping an enti [ ogit:organizes ogit:Event ] [ ogit:has ogit.Politics:Reaction ] [ ogit:issues ogit.Legal:LegalNorm ] - [ ogit:conducts ogit.FinancialMarket:Activity ] + [ ogit:conducts ogit.FinancialMarket:Activity ] # [Deprecated] + [ ogit:conducts ogit.FinancialMarket:EconomicActivity ] [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] [ ogit:supports ogit.ServiceManagement:ServiceMapping ] [ ogit:publishes ogit.Publications:Publication ] From 0eb8c816791ef4ef44be691e8f6ec90b70e5c681 Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Tue, 21 Apr 2026 11:03:27 +0200 Subject: [PATCH 12/17] Fix missing prefix --- NTO/FinancialMarket/entities/EconomicActivity.ttl | 1 + 1 file changed, 1 insertion(+) diff --git a/NTO/FinancialMarket/entities/EconomicActivity.ttl b/NTO/FinancialMarket/entities/EconomicActivity.ttl index ee82075cd3f..25d9c6c7c96 100644 --- a/NTO/FinancialMarket/entities/EconomicActivity.ttl +++ b/NTO/FinancialMarket/entities/EconomicActivity.ttl @@ -1,4 +1,5 @@ @prefix ogit.FinancialMarket: . +@prefix ogit.ClassificationStandard: . @prefix ogit: . @prefix rdfs: . @prefix dcterms: . From e0242ae3ffe1efef2dbb7599c3ac634465574265 Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Mon, 27 Apr 2026 09:06:19 +0200 Subject: [PATCH 13/17] Delete deprecated entities --- NTO/FinancialMarket/entities/Activity.ttl | 30 ------------------- NTO/Meteorology/entities/WeatherStation.ttl | 33 --------------------- SGO/sgo/entities/Organization.ttl | 1 - 3 files changed, 64 deletions(-) delete mode 100644 NTO/FinancialMarket/entities/Activity.ttl delete mode 100644 NTO/Meteorology/entities/WeatherStation.ttl diff --git a/NTO/FinancialMarket/entities/Activity.ttl b/NTO/FinancialMarket/entities/Activity.ttl deleted file mode 100644 index eae8d8caac9..00000000000 --- a/NTO/FinancialMarket/entities/Activity.ttl +++ /dev/null @@ -1,30 +0,0 @@ -@prefix ogit.FinancialMarket: . -@prefix ogit: . -@prefix rdfs: . -@prefix dcterms: . -@prefix ogit.ClassificationStandard: . - -ogit.FinancialMarket:Activity - a rdfs:Class; - rdfs:subClassOf ogit:Entity; - rdfs:label "Activity"; - dcterms:description "[Deprecated] A financial or economic activity performed by an entity."; - dcterms:valid "start=20125-09-05;"; - dcterms:creator "Calvin Spolwind"; - ogit:scope "NTO"; - ogit:parent ogit:Node; - ogit:mandatory-attributes ( - ogit:type - ); - ogit:optional-attributes ( - ogit:source - ogit:description - ogit:identifierCode - ogit:codeType - ); - ogit:indexed-attributes ( - ); - ogit:allowed ( - [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] - ); -. \ No newline at end of file diff --git a/NTO/Meteorology/entities/WeatherStation.ttl b/NTO/Meteorology/entities/WeatherStation.ttl deleted file mode 100644 index a30a816c726..00000000000 --- a/NTO/Meteorology/entities/WeatherStation.ttl +++ /dev/null @@ -1,33 +0,0 @@ -@prefix dcterms: . -@prefix ogit: . -@prefix ogit.Meteorology: . -@prefix owl: . -@prefix rdfs: . - - -ogit.Meteorology:WeatherStation - a rdfs:Class; - rdfs:subClassOf ogit:Entity; - rdfs:label "WeatherStation"; - dcterms:description "[Deprecated] Represents a physical weather observation site."; - dcterms:valid "start=2025-10-15;"; - dcterms:creator "Markus Noack"; - ogit:scope "NTO"; - ogit:parent ogit:Node; - ogit:mandatory-attributes ( - ogit:latitude - ogit:longitude - ogit:altitude - ); - ogit:optional-attributes ( - ogit:name - ); - ogit:indexed-attributes ( - ogit:name - ); - ogit:allowed ( - [ ogit:locatedIn ogit:Region ] - [ ogit:locatedIn ogit:Location ] - [ ogit:generates ogit:Timeseries ] - ); -. diff --git a/SGO/sgo/entities/Organization.ttl b/SGO/sgo/entities/Organization.ttl index 01418b37501..8ce96353716 100644 --- a/SGO/sgo/entities/Organization.ttl +++ b/SGO/sgo/entities/Organization.ttl @@ -163,7 +163,6 @@ The ogit/function attribute should be used to tell what kind of grouping an enti [ ogit:organizes ogit:Event ] [ ogit:has ogit.Politics:Reaction ] [ ogit:issues ogit.Legal:LegalNorm ] - [ ogit:conducts ogit.FinancialMarket:Activity ] # [Deprecated] [ ogit:conducts ogit.FinancialMarket:EconomicActivity ] [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] [ ogit:supports ogit.ServiceManagement:ServiceMapping ] From c754035da51dc1872644d7ee2a6f8c882e2199da Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Tue, 28 Apr 2026 13:51:50 +0200 Subject: [PATCH 14/17] Revert "Delete deprecated entities" This reverts commit e0242ae3ffe1efef2dbb7599c3ac634465574265. --- NTO/FinancialMarket/entities/Activity.ttl | 30 +++++++++++++++++++ NTO/Meteorology/entities/WeatherStation.ttl | 33 +++++++++++++++++++++ SGO/sgo/entities/Organization.ttl | 1 + 3 files changed, 64 insertions(+) create mode 100644 NTO/FinancialMarket/entities/Activity.ttl create mode 100644 NTO/Meteorology/entities/WeatherStation.ttl diff --git a/NTO/FinancialMarket/entities/Activity.ttl b/NTO/FinancialMarket/entities/Activity.ttl new file mode 100644 index 00000000000..eae8d8caac9 --- /dev/null +++ b/NTO/FinancialMarket/entities/Activity.ttl @@ -0,0 +1,30 @@ +@prefix ogit.FinancialMarket: . +@prefix ogit: . +@prefix rdfs: . +@prefix dcterms: . +@prefix ogit.ClassificationStandard: . + +ogit.FinancialMarket:Activity + a rdfs:Class; + rdfs:subClassOf ogit:Entity; + rdfs:label "Activity"; + dcterms:description "[Deprecated] A financial or economic activity performed by an entity."; + dcterms:valid "start=20125-09-05;"; + dcterms:creator "Calvin Spolwind"; + ogit:scope "NTO"; + ogit:parent ogit:Node; + ogit:mandatory-attributes ( + ogit:type + ); + ogit:optional-attributes ( + ogit:source + ogit:description + ogit:identifierCode + ogit:codeType + ); + ogit:indexed-attributes ( + ); + ogit:allowed ( + [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] + ); +. \ No newline at end of file diff --git a/NTO/Meteorology/entities/WeatherStation.ttl b/NTO/Meteorology/entities/WeatherStation.ttl new file mode 100644 index 00000000000..a30a816c726 --- /dev/null +++ b/NTO/Meteorology/entities/WeatherStation.ttl @@ -0,0 +1,33 @@ +@prefix dcterms: . +@prefix ogit: . +@prefix ogit.Meteorology: . +@prefix owl: . +@prefix rdfs: . + + +ogit.Meteorology:WeatherStation + a rdfs:Class; + rdfs:subClassOf ogit:Entity; + rdfs:label "WeatherStation"; + dcterms:description "[Deprecated] Represents a physical weather observation site."; + dcterms:valid "start=2025-10-15;"; + dcterms:creator "Markus Noack"; + ogit:scope "NTO"; + ogit:parent ogit:Node; + ogit:mandatory-attributes ( + ogit:latitude + ogit:longitude + ogit:altitude + ); + ogit:optional-attributes ( + ogit:name + ); + ogit:indexed-attributes ( + ogit:name + ); + ogit:allowed ( + [ ogit:locatedIn ogit:Region ] + [ ogit:locatedIn ogit:Location ] + [ ogit:generates ogit:Timeseries ] + ); +. diff --git a/SGO/sgo/entities/Organization.ttl b/SGO/sgo/entities/Organization.ttl index 8ce96353716..01418b37501 100644 --- a/SGO/sgo/entities/Organization.ttl +++ b/SGO/sgo/entities/Organization.ttl @@ -163,6 +163,7 @@ The ogit/function attribute should be used to tell what kind of grouping an enti [ ogit:organizes ogit:Event ] [ ogit:has ogit.Politics:Reaction ] [ ogit:issues ogit.Legal:LegalNorm ] + [ ogit:conducts ogit.FinancialMarket:Activity ] # [Deprecated] [ ogit:conducts ogit.FinancialMarket:EconomicActivity ] [ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ] [ ogit:supports ogit.ServiceManagement:ServiceMapping ] From f61b4ce0c599f50911741df6cb4defe26a232fd5 Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Tue, 28 Apr 2026 13:59:21 +0200 Subject: [PATCH 15/17] Move ogit/id back to mandatory --- NTO/FinancialMarket/entities/EconomicActivity.ttl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NTO/FinancialMarket/entities/EconomicActivity.ttl b/NTO/FinancialMarket/entities/EconomicActivity.ttl index 25d9c6c7c96..80f1dad4dff 100644 --- a/NTO/FinancialMarket/entities/EconomicActivity.ttl +++ b/NTO/FinancialMarket/entities/EconomicActivity.ttl @@ -14,11 +14,11 @@ ogit.FinancialMarket:EconomicActivity ogit:scope "NTO"; ogit:parent ogit:Node; ogit:mandatory-attributes ( + ogit:id ogit:type ); ogit:optional-attributes ( ogit:title - ogit:id ogit:source ogit:description ogit:identifierCode From 88d6dd406b5f39c7ea6889e818fde4c77101adaa Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Tue, 28 Apr 2026 14:00:52 +0200 Subject: [PATCH 16/17] Revert "Move ogit/id back to mandatory" This reverts commit f61b4ce0c599f50911741df6cb4defe26a232fd5. --- NTO/FinancialMarket/entities/EconomicActivity.ttl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NTO/FinancialMarket/entities/EconomicActivity.ttl b/NTO/FinancialMarket/entities/EconomicActivity.ttl index 80f1dad4dff..25d9c6c7c96 100644 --- a/NTO/FinancialMarket/entities/EconomicActivity.ttl +++ b/NTO/FinancialMarket/entities/EconomicActivity.ttl @@ -14,11 +14,11 @@ ogit.FinancialMarket:EconomicActivity ogit:scope "NTO"; ogit:parent ogit:Node; ogit:mandatory-attributes ( - ogit:id ogit:type ); ogit:optional-attributes ( ogit:title + ogit:id ogit:source ogit:description ogit:identifierCode From 724886db26bf2e05a87e8b13e32f6c80d356eee6 Mon Sep 17 00:00:00 2001 From: CalvinSpolwindAlmato Date: Tue, 28 Apr 2026 14:02:51 +0200 Subject: [PATCH 17/17] Revert reversion --- NTO/FinancialMarket/entities/EconomicActivity.ttl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NTO/FinancialMarket/entities/EconomicActivity.ttl b/NTO/FinancialMarket/entities/EconomicActivity.ttl index 25d9c6c7c96..6b733c3db6e 100644 --- a/NTO/FinancialMarket/entities/EconomicActivity.ttl +++ b/NTO/FinancialMarket/entities/EconomicActivity.ttl @@ -14,15 +14,15 @@ ogit.FinancialMarket:EconomicActivity ogit:scope "NTO"; ogit:parent ogit:Node; ogit:mandatory-attributes ( - ogit:type + ogit:id ); ogit:optional-attributes ( ogit:title - ogit:id ogit:source ogit:description ogit:identifierCode ogit:codeType + ogit:type ogit:description ); ogit:indexed-attributes (