Skip to content

Commit

Permalink
Merge pull request #175 from TorstenHirsch/feature-163_New_Model_Flee…
Browse files Browse the repository at this point in the history
…t_VehicleDescription

[New Model]: Feature 163, List of Vehicle Product Discription needed for QAX and Catena-X release 3.2
  • Loading branch information
bs-jokri authored Jul 6, 2023
2 parents ff653d0 + 65272f9 commit 0876d4a
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
47 changes: 47 additions & 0 deletions io.catenax.fleet.vehicles/1.0.0/Vehicles.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
#######################################################################
# 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
# 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: <urn:samm:org.eclipse.esmf.samm:meta-model:2.0.0#> .
@prefix samm-c: <urn:samm:org.eclipse.esmf.samm:characteristic:2.0.0#> .
@prefix samm-e: <urn:samm:org.eclipse.esmf.samm:entity:2.0.0#> .
@prefix unit: <urn:samm:org.eclipse.esmf.samm:unit:2.0.0#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix : <urn:samm:io.catenax.fleet.vehicles:1.0.0#> .
@prefix ext-description: <urn:samm:io.catenax.vehicle.product_description:3.0.0#> .

:Vehicles a samm:Aspect ;
samm:preferredName "Vehicles"@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 ( ) .

: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 ext-description:Vehicle .

1 change: 1 addition & 0 deletions io.catenax.fleet.vehicles/1.0.0/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ "status" : "release"}
14 changes: 14 additions & 0 deletions io.catenax.fleet.vehicles/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog
All notable changes to this model will be documented in this file.

## [Unreleased]

## [1.0.0] - 2023-06-26
### Added
- initial version of this model

### Changed
n/a

### Removed

0 comments on commit 0876d4a

Please sign in to comment.