Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions NTO/FinancialMarket/attributes/shares.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix ogit.FinancialMarket: <http://www.purl.org/ogit/FinancialMarket/> .
@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.FinancialMarket:shares
a owl:DatatypeProperty;
rdfs:subPropertyOf ogit:Attribute;
rdfs:label "shares";
dcterms:description "Number of shares held in an ownership relation between two entities. Represents the quantity of equity instruments owned.";
dcterms:valid "start=2025-04-15;";
dcterms:creator "Calvin Spolwind";
.
25 changes: 25 additions & 0 deletions NTO/FinancialMarket/entities/OwnershipRelation.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
@prefix ogit.FinancialMarket: <http://www.purl.org/ogit/FinancialMarket/> .
@prefix ogit: <http://www.purl.org/ogit/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ogit.FinancialMarket:OwnershipRelation
a rdfs:Class;
rdfs:subClassOf ogit:Entity;
rdfs:label "OwnershipRelation";
dcterms:description """Represents an ownership or equity relationship between two Organization entities. The relation is reified to allow storing attributes such as shares""";
dcterms:valid "start=2025-04-28;";
dcterms:creator "Calvin Spolwind";
ogit:scope "NTO";
ogit:parent ogit:Node;
ogit:mandatory-attributes (
);
ogit:optional-attributes (
ogit.FinancialMarket:shares
);
ogit:indexed-attributes (
);
ogit:allowed (
[ ogit:has ogit:Organization ]
);
.
1 change: 1 addition & 0 deletions SGO/sgo/entities/Organization.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ The ogit/function attribute should be used to tell what kind of grouping an enti
[ ogit:has ogit.Politics:Reaction ]
[ ogit:issues ogit.Legal:LegalNorm ]
[ ogit:conducts ogit.FinancialMarket:Activity ]
[ ogit:has ogit.FinancialMarket:OwnershipRelation ]
[ ogit.ClassificationStandard:classifiedUnder ogit.ClassificationStandard:ClassificationStandardTreeBranch ]
[ ogit:supports ogit.ServiceManagement:ServiceMapping ]
[ ogit:publishes ogit.Publications:Publication ]
Expand Down
2 changes: 2 additions & 0 deletions SGO/sgo/entities/Person.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
@prefix ogit.Network: <http://www.purl.org/ogit/Network/> .
@prefix ogit.Project: <http://www.purl.org/ogit/Project/> .
@prefix ogit.Factory: <http://www.purl.org/ogit/Factory/> .
@prefix ogit.FinancialMarket: <http://www.purl.org/ogit/FinancialMarket/> .
@prefix ogit.ServiceManagement: <http://www.purl.org/ogit/ServiceManagement/> .
@prefix ogit.CustomerSupport: <http://www.purl.org/ogit/CustomerSupport/> .
@prefix ogit.Mobile: <http://www.purl.org/ogit/Mobile/> .
Expand Down Expand Up @@ -147,6 +148,7 @@ ogit:Person
[ ogit:consumes ogit.Project:Project ]
[ ogit:resolves ogit.ServiceManagement:Ticket ]
[ ogit:represents ogit:Organization ]
[ ogit:has ogit.FinancialMarket:OwnershipRelation ]
[ ogit:represents ogit:Person ]
[ ogit:follows ogit:Person ]
[ ogit:rejects ogit:Alert ]
Expand Down
Loading