Skip to content

Commit

Permalink
define entity for variable, fix accounting namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaushik committed Feb 13, 2019
1 parent ef71d8b commit 4553c32
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions NTO/Accounting/entities/CompanyEntity.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ ogit.Accounting:CompanyEntity
ogit:allowed (
[ ogit.Accounting:has ogit.Accounting:ConfigItem ]
[ ogit:generates ogit.Accounting:FinancialStatement ]
[ ogit:belongs ogit:Organization ]
);
.
1 change: 1 addition & 0 deletions NTO/Accounting/entities/DDTarget.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ ogit.Accounting:DDTarget
);
ogit:allowed (
[ ogit:belongs ogit:Organization ]
[ ogit:generates ogit.Accounting:FinancialStatement ]
);
.
14 changes: 14 additions & 0 deletions NTO/Automation/attributes/todo.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix ogit.Automation: <http://www.purl.org/ogit/Automation/> .
@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.Automation:todo
a owl:DatatypeProperty;
rdfs:subPropertyOf ogit:Attribute;
rdfs:label "todo";
dcterms:description "Boolean value, true if variable is todo variable.";
dcterms:valid "start=2015-02-09;";
dcterms:creator "Kaushik Gondaliya";
.
33 changes: 33 additions & 0 deletions NTO/Automation/entities/Variable.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix ogit.Automation: <http://www.purl.org/ogit/Automation/> .
@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.Automation:Variable
a rdfs:Class;
rdfs:subClassOf ogit:Entity;
rdfs:label "Variable";
dcterms:description "Variable definition to be used in KnowledegeItem";
dcterms:valid "start=2015-02-09;";
dcterms:creator "Kaushik Gondaliya";
ogit:scope "NTO";
ogit:parent "http://www.purl.org/ogit/Node";
ogit:mandatory-attributes (
ogit:_id
ogit:name
ogit:description
ogit:accessControl
ogit.Automation:todo
ogit:creator

);
ogit:optional-attributes (
ogit:_tags
);
ogit:indexed-attributes (
);
ogit:allowed (

);
.

0 comments on commit 4553c32

Please sign in to comment.