Skip to content

Commit

Permalink
Update TimeSeriesReference.ttl
Browse files Browse the repository at this point in the history
restored descriptions and prefarredNames  + updated copyright header date + removed semicolon option from enum description
  • Loading branch information
TobiasHamacherDLR authored May 8, 2023
1 parent 731771b commit 73dc2cf
Showing 1 changed file with 27 additions and 16 deletions.
43 changes: 27 additions & 16 deletions io.catenax.time_series_reference/1.0.0/TimeSeriesReference.ttl
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#######################################################################
# Copyright (c) 2022 Allgemeine Deutsche Automobil-Club (ADAC) e.V
# Copyright (c) 2022 Bayerische Motoren Werke Aktiengesellschaft
# Copyright (c) 2022 Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)
# Copyright (c) 2022 Siemens AG
# Copyright (c) 2022 ZF Friedrichshafen AG
# Copyright (c) 2022 Contributors to the Eclipse Foundation
# Copyright (c) 2023 Allgemeine Deutsche Automobil-Club (ADAC) e.V
# Copyright (c) 2023 Bayerische Motoren Werke Aktiengesellschaft
# Copyright (c) 2023 Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)
# Copyright (c) 2023 Siemens AG
# Copyright (c) 2023 ZF Friedrichshafen AG
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
Expand All @@ -26,14 +26,16 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix : <urn:bamm:io.catenax.time_series_reference:1.0.0#> .


:TimeSeriesReference a bamm:Aspect;
bamm:preferredName "Time Series Reference"@en;
bamm:properties (:decimalSeperator :sourceFile :fileExtension :delimiter :payload);
bamm:operations ();
bamm:events ().
bamm:events ();
bamm:description "Aspect to describe a reference to a file which contains time series data."@en.
:decimalSeperator a bamm:Property;
bamm:preferredName "Decimal Seperator"@en;
bamm:description "Indicates whether a dot, comma or semicolon is used to separate the decimal place in the source file."@en;
bamm:description "Indicates whether a dot or comma is used to separate the decimal place in the source file."@en;
bamm:characteristic :DecimalSeperator;
bamm:exampleValue "dot".
:sourceFile a bamm:Property;
Expand All @@ -55,23 +57,30 @@
bamm:description "Contains the information about variable names and their units as well as the name of the time column."@en;
bamm:characteristic :PayloadCharacteristic.
:DecimalSeperator a bamm-c:Enumeration;
bamm:preferredName "Decimal Separator Enumeration"@en;
bamm:description "Indicates whether a dot or comma is used to separate the decimal place in the source file."@en;
bamm:dataType xsd:string;
bamm-c:values ("comma" "dot").
:ResourcePath a bamm:Characteristic;
bamm:preferredName "Resource Path"@en;
bamm:description "The path of a resource."@en;
bamm:dataType xsd:anyURI.
:FileExtension a bamm-c:Enumeration;
bamm:preferredName "File Extension Enumeration"@en;
bamm:description "Indicates whether csv, none or txt is used as file extension."@en;
bamm:dataType xsd:string;
bamm-c:values ("csv" "none" "txt" "dat" "data").
:Delimiter a bamm-c:Enumeration;
bamm:preferredName "Delimiter Enumeration"@en;
bamm:description "Indicates whether a semicolon, comma or tab is used as a deliniter between datapoints."@en;
bamm:dataType xsd:string;
bamm-c:values ("semicolon" "comma" "tab").
:PayloadCharacteristic a bamm-c:TimeSeries;
bamm:preferredName "payload characteristic"@en;
bamm:description "Contains the information about variable names and their units as well as the name of the time column."@en;
bamm:dataType :PayloadEntity.
:PayloadEntity a bamm:Entity;
bamm:preferredName "payload entity"@en;
bamm:preferredName "Payload Entity"@en;
bamm:properties (:units :variableNames :timeColumnName);
bamm:description "Contains the information about variable names and their units as well as the name of the time column."@en.
:units a bamm:Property;
Expand All @@ -86,9 +95,6 @@
bamm:preferredName "Time Column Name"@en;
bamm:description "Specifies the name of the Variable Names entry which contains the time column."@en;
bamm:characteristic :TimeColumnChoice.
:UnitsListCharacteristic a bamm-c:List;
bamm:description "Lists the unit for each datapoint."@en;
bamm:dataType :Unit.
:VariableListCharacteristic a bamm-c:List;
bamm:description "Lists the name for each datapoint."@en;
bamm:dataType xsd:string.
Expand All @@ -97,10 +103,15 @@
bamm:description "Specifies the name of the time colums variable."@en;
bamm:dataType xsd:string;
bamm-c:values ("Time" "TIME" "time" "t").
:Unit a bamm:Entity;
bamm:properties (:unit);
bamm:description "The unit of a column."@en.
:UnitsListCharacteristic a bamm-c:List;
bamm:preferredName "Units List Characteristic"@en;
bamm:description "Lists the unit for each datapoint."@en;
bamm:dataType :UnitEntity.
:unit a bamm:Property;
bamm:preferredName "Unit"@en;
bamm:preferredName "Unit Property"@en;
bamm:description "The unit of a column."@en;
bamm:characteristic bamm-c:UnitReference.
:UnitEntity a bamm:Entity;
bamm:preferredName "Unit Entity"@en;
bamm:properties (:unit);
bamm:description "The unit of a column."@en.

0 comments on commit 73dc2cf

Please sign in to comment.