Skip to content
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

Bamm-to-Samm-decomissioning_certificate-1.0.0 #650

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
@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.decomissioning_certificate:2.0.0#> .

:DecommissioningCertificate a samm:Aspect ;
samm:preferredName "Decommissioning Certificate"@en ;
samm:properties ( :catenaXId :serialNumber :issuer :issueDate [ samm:property :revocationDate; samm:optional true ] ) ;
samm:operations ( ) ;
samm:events ( ) .

:catenaXId a samm:Property ;
samm:preferredName "catenaXId"@en ;
samm:description "Twin identification"@en ;
samm:see <https://en.wikipedia.org/wiki/Universally_unique_identifier> ;
samm:characteristic :Text ;
samm:exampleValue "13172f88-b228-4501-a2c9-f0a038eb85ca" .

:serialNumber a samm:Property ;
samm:preferredName "serial number"@en ;
samm:description "This is the \"real-world\" identification of an object, which is bound to be destructed. In case of a complete vehicle, which was in circulation before, it has to be the VAN. "@en ;
samm:see <https://en.wikipedia.org/wiki/Serial_number> ;
samm:characteristic :Text ;
samm:exampleValue "qwertzuiop" .

:issuer a samm:Property ;
samm:preferredName "issuer"@en ;
samm:description "BPMN of the business partner who creates this certificate, usually a dismantler."@en ;
samm:see <https://en.wikipedia.org/wiki/Issuer> ;
samm:characteristic :Text ;
samm:exampleValue "BPNLBMW000000001" .

:issueDate a samm:Property ;
samm:preferredName "issue date"@en ;
samm:description "This is the date when the item has been decommissioned by the issuer."@en ;
samm:see <https://en.wikipedia.org/wiki/Effective_date> ;
samm:characteristic :Timestamp ;
samm:exampleValue "2002-09-24-06:00"^^xsd:dateTime .

:revocationDate a samm:Property ;
samm:preferredName "revocation date"@en ;
samm:description "This is the date when the decommission certificate is revoked by the issuer. This only happens in exceptional cases when a vehicle has been marked as decommissioned by error or any other error is made in the issuance of the certificate"@en ;
samm:see <https://en.wikipedia.org/wiki/Effective_date> ;
samm:characteristic :Timestamp ;
samm:exampleValue "2002-09-24-06:00"^^xsd:dateTime .

:Text a samm:Characteristic ;
samm:description "Describes a Property, which contains plain text. This is intended exclusively for human readable strings, not for identifiers, measurement values, etc."@en ;
samm:dataType xsd:string .

:Timestamp a samm:Characteristic ;
samm:description "Describes a Property which contains the date and time with an optional timezone."@en ;
samm:dataType xsd:dateTime .

1 change: 1 addition & 0 deletions io.catenax.decomissioning_certificate/2.0.0/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ "status" : "draft"}
4 changes: 4 additions & 0 deletions io.catenax.decomissioning_certificate/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this model will be documented in this file.

## [Unreleased]

## [2.0.0] - 2024-02-15
This model is in status draft, as this is just the conversion of existing model from bamm to samm and not released model.
This version can still be considered for updates.

## [1.0.0] - 2023-01-15
### Added
- initial model
Expand Down
Loading