-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update IotSensorDeviceDefinition v.2.0.0 #448
Merged
agg3fe
merged 6 commits into
eclipse-tractusx:main
from
Cvetanka-ZF:Cvetanka-ZF-IotSensorDeviceDefinition_v.2.0.0
Nov 21, 2023
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
2a502a9
Create metadata.json
Cvetanka-ZF 62dbf69
IotSensorDeviceDefinition
Cvetanka-ZF acd9595
Update IotSensorDeviceDefinition.ttl
Cvetanka-ZF fefdc6a
Update RELEASE_NOTES.md
Cvetanka-ZF 35d56c2
Update IotSensorDeviceDefinition.ttl
Cvetanka-ZF dc9ce45
Update RELEASE_NOTES.md
Cvetanka-ZF File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
81 changes: 81 additions & 0 deletions
81
io.catenax.iot_sensor_device_definition/2.0.0/IotSensorDeviceDefinition.ttl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
####################################################################### | ||
# Copyright (c) 2023 BASF SE | ||
# Copyright (c) 2023 Henkel AG & Co. KGaA | ||
# 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. | ||
# | ||
# 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.1.0#> . | ||
@prefix samm-c: <urn:samm:org.eclipse.esmf.samm:characteristic:2.1.0#> . | ||
@prefix samm-e: <urn:samm:org.eclipse.esmf.samm:entity:2.1.0#> . | ||
@prefix unit: <urn:samm:org.eclipse.esmf.samm:unit:2.1.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.iot_sensor_device_definition:2.0.0#> . | ||
@prefix ext-number: <urn:samm:io.catenax.shared.business_partner_number:1.0.0#> . | ||
@prefix ext-uuid: <urn:samm:io.catenax.shared.uuid:1.0.0#> . | ||
|
||
:IotSensorDeviceDefinition a samm:Aspect ; | ||
samm:preferredName "IoT Sensor Device Definition"@en ; | ||
samm:description "Permanent characteristics of the individual IoT sensor device."@en ; | ||
samm:properties ( :catenaXId :manufacturer :type :serialNumber :ownerID ) ; | ||
samm:operations ( ) ; | ||
samm:events ( ) . | ||
|
||
:catenaXId a samm:Property ; | ||
samm:preferredName "Catena-X Identifier"@en ; | ||
samm:description "The fully anonymous Catena-X ID of the serialized part, valid for the Catena-X dataspace."@en ; | ||
samm:characteristic ext-uuid:UuidV4Trait ; | ||
samm:exampleValue "urn:uuid:7a6a8376-1783-4926-9be0-5d946622b2e2" . | ||
|
||
:manufacturer a samm:Property ; | ||
samm:preferredName "Manufacturer"@en ; | ||
samm:description "Manufacturer of the IoT sensor device."@en ; | ||
samm:see <https://www.wikidata.org/wiki/Q13235160> ; | ||
samm:characteristic :ManufacturerCharacteristic ; | ||
samm:exampleValue "Company X" . | ||
|
||
:type a samm:Property ; | ||
samm:preferredName "IoT Sensor Device Type"@en ; | ||
samm:description "The type of the IoT sensor device."@en ; | ||
samm:characteristic :TypeCharacteristic ; | ||
samm:exampleValue "TRACK02839" . | ||
|
||
:serialNumber a samm:Property ; | ||
samm:preferredName "IoT Sensor Device Serial Number"@en ; | ||
samm:description "The serial number of the IoT sensor device, as assigned by the manufacturer of the device."@en ; | ||
samm:characteristic :SerialNumberCharacteristic ; | ||
samm:exampleValue "123-0740-3434-A" . | ||
|
||
:ownerID a samm:Property ; | ||
samm:preferredName "IoT Sensor Device Owner"@en ; | ||
samm:description "The Catena-X BPNL of the device owner."@en ; | ||
samm:characteristic ext-number:BpnlTrait ; | ||
samm:exampleValue "BPNL00000003ABCD" . | ||
|
||
:ManufacturerCharacteristic a samm:Characteristic ; | ||
samm:preferredName "IoT Device Manufacturer Name"@en ; | ||
samm:description "Characteristic describing the property manufacturer."@en ; | ||
samm:see <https://www.wikidata.org/wiki/Q184754> ; | ||
samm:dataType xsd:string . | ||
|
||
:TypeCharacteristic a samm:Characteristic ; | ||
samm:preferredName "IoT Device Type"@en ; | ||
samm:description "Describes the characteristics of the given type of device."@en ; | ||
samm:dataType xsd:string . | ||
|
||
:SerialNumberCharacteristic a samm:Characteristic ; | ||
samm:preferredName "IoT Device Serial Number"@en ; | ||
samm:description "Describes the characteristic of the property serial number."@en ; | ||
samm:dataType xsd:string . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ "status" : "release"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please change the date to 2023-11-20