From 923e033f57eda2400af72cceb5ff76f42ab6c23c Mon Sep 17 00:00:00 2001 From: "hit8fe@bosch.com" Date: Mon, 15 May 2023 16:15:01 +0200 Subject: [PATCH 1/4] Initital version1.0.0 First draft of initial version: shell around Vehicle.ProductDescription:2.0.0 --- io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl | 32 +++++++++++++++++++ io.catenax.fleet.vehicles/1.0.0/metadata.json | 1 + io.catenax.fleet.vehicles/RELEASE_NOTES.md | 14 ++++++++ 3 files changed, 47 insertions(+) create mode 100644 io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl create mode 100644 io.catenax.fleet.vehicles/1.0.0/metadata.json create mode 100644 io.catenax.fleet.vehicles/RELEASE_NOTES.md diff --git a/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl b/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl new file mode 100644 index 00000000..ec52dbe4 --- /dev/null +++ b/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl @@ -0,0 +1,32 @@ +@prefix samm: . +@prefix samm-c: . +@prefix samm-e: . +@prefix unit: . +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . +@prefix : . +@prefix ext-description: . + +:Vehicles a samm:Aspect ; + samm:preferredName "Vehicles"@en ; + samm:description "Fleet of vehicles. This model is a shell around io.catenax.vehicle.product_description/2.0.0\nIt allows to send multiple io.catenax.vehicle.product_description"@en ; + samm:properties ( :listOfVehicles ) ; + samm:operations ( ) ; + samm:events ( ) . + +:listOfVehicles a samm:Property ; + samm:preferredName "listOfVehicles"@en ; + samm:description "List of Vehicle.ProductDescription"@en ; + samm:characteristic :ListOfVehicles . + +:ListOfVehicles a samm-c:List ; + samm:preferredName "List of vehicles"@en ; + samm:description "List of vehicles"@en ; + samm:dataType :VehicleProductDescription . + +:VehicleProductDescription a samm:Entity ; + samm:preferredName "Vehicle product description"@en ; + samm:description "One vehicle product description"@en ; + samm:properties ( ext-description:oem ext-description:vehicle ext-description:body ext-description:equipments ext-description:production ext-description:sale ext-description:engines ext-description:fuel ) . + diff --git a/io.catenax.fleet.vehicles/1.0.0/metadata.json b/io.catenax.fleet.vehicles/1.0.0/metadata.json new file mode 100644 index 00000000..a182c7b8 --- /dev/null +++ b/io.catenax.fleet.vehicles/1.0.0/metadata.json @@ -0,0 +1 @@ +{ "status" : "release"} \ No newline at end of file diff --git a/io.catenax.fleet.vehicles/RELEASE_NOTES.md b/io.catenax.fleet.vehicles/RELEASE_NOTES.md new file mode 100644 index 00000000..55a40a02 --- /dev/null +++ b/io.catenax.fleet.vehicles/RELEASE_NOTES.md @@ -0,0 +1,14 @@ +# Changelog +All notable changes to this model will be documented in this file. + +## [Unreleased] + +## [1.0.0] - 2023-05-15 +### Added +- initial version of this model + +### Changed +n/a + +### Removed + From defacee87799c8af88b542212293f579f247d4df Mon Sep 17 00:00:00 2001 From: "hit8fe@bosch.com" Date: Tue, 16 May 2023 17:06:40 +0200 Subject: [PATCH 2/4] Update Vehicles.ttl Initial version of the model with already integrated license header --- io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl | 27 ++++++++++++++------ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl b/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl index ec52dbe4..60969e35 100644 --- a/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl +++ b/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl @@ -1,3 +1,19 @@ +####################################################################### +# Copyright (c) 2023 Robert Bosch GmbH +# Copyright (c) 2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +# Copyright (c) 2023 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This work is made available under the terms of the +# Creative Commons Attribution 4.0 International (CC-BY-4.0) license, +# which is available at +# https://creativecommons.org/licenses/by/4.0/legalcode. +# +# SPDX-License-Identifier: CC-BY-4.0 +####################################################################### + @prefix samm: . @prefix samm-c: . @prefix samm-e: . @@ -6,11 +22,11 @@ @prefix rdfs: . @prefix xsd: . @prefix : . -@prefix ext-description: . +@prefix ext-description: . :Vehicles a samm:Aspect ; samm:preferredName "Vehicles"@en ; - samm:description "Fleet of vehicles. This model is a shell around io.catenax.vehicle.product_description/2.0.0\nIt allows to send multiple io.catenax.vehicle.product_description"@en ; + samm:description "Fleet of vehicles. This model is a shell around io.catenax.vehicle.product_description 3.0.0\nIt allows to send multiple io.catenax.vehicle.product_description."@en ; samm:properties ( :listOfVehicles ) ; samm:operations ( ) ; samm:events ( ) . @@ -23,10 +39,5 @@ :ListOfVehicles a samm-c:List ; samm:preferredName "List of vehicles"@en ; samm:description "List of vehicles"@en ; - samm:dataType :VehicleProductDescription . - -:VehicleProductDescription a samm:Entity ; - samm:preferredName "Vehicle product description"@en ; - samm:description "One vehicle product description"@en ; - samm:properties ( ext-description:oem ext-description:vehicle ext-description:body ext-description:equipments ext-description:production ext-description:sale ext-description:engines ext-description:fuel ) . + samm:dataType ext-description:Vehicle . From 068bd20388e19d2bfc1bca3a6112b9b0a9ef399f Mon Sep 17 00:00:00 2001 From: "Torsten.Hirsch@de.bosch.com" <102170485+TorstenHirsch@users.noreply.github.com> Date: Wed, 17 May 2023 10:12:25 +0200 Subject: [PATCH 3/4] Update Vehicles.ttl Updated license information --- io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl b/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl index 60969e35..5af35576 100644 --- a/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl +++ b/io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl @@ -1,6 +1,10 @@ ####################################################################### # Copyright (c) 2023 Robert Bosch GmbH # Copyright (c) 2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +# Copyright (c) 2023 Volkswagen AG +# Copyright (c) 2023 ZF Friedrichshafen AG +# Copyright (c) 2023 SAP SE +# Copyright (c) 2023 Siemens AG # Copyright (c) 2023 Contributors to the Eclipse Foundation # # See the NOTICE file(s) distributed with this work for additional From 65272f9778266851ea09e00aa18fcc87408d413b Mon Sep 17 00:00:00 2001 From: "hit8fe@bosch.com" Date: Mon, 26 Jun 2023 16:11:02 +0200 Subject: [PATCH 4/4] Update RELEASE_NOTES.md --- io.catenax.fleet.vehicles/RELEASE_NOTES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.catenax.fleet.vehicles/RELEASE_NOTES.md b/io.catenax.fleet.vehicles/RELEASE_NOTES.md index 55a40a02..a814df78 100644 --- a/io.catenax.fleet.vehicles/RELEASE_NOTES.md +++ b/io.catenax.fleet.vehicles/RELEASE_NOTES.md @@ -3,7 +3,7 @@ All notable changes to this model will be documented in this file. ## [Unreleased] -## [1.0.0] - 2023-05-15 +## [1.0.0] - 2023-06-26 ### Added - initial version of this model