Skip to content

Commit

Permalink
first version of UnsubscribeShopfloorInformation
Browse files Browse the repository at this point in the history
  • Loading branch information
wehrstedt-jan committed Jul 7, 2023
1 parent cd4a327 commit 808f692
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
##########################################################################################
# Copyright (c) 2023 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e. V.
# Copyright (c) 2023 Siemens AG
#
# 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.mp_standard_unsubscribe:1.0.0#> .
@prefix ext-header: <urn:samm:io.catenax.messaging_header:1.0.0#> .

:UnsubscribeShopfloorInformation a samm:Aspect ;
samm:preferredName "UnsubscribeShopfloorInformation"@en ;
samm:description "Message to unsubscribe the cyclic or notification communication mode of the GetShopfloorInformation request"@en ;
samm:properties ( :unsubscribeMessage ) ;
samm:operations ( ) ;
samm:events ( ) .

:unsubscribeMessage a samm:Property ;
samm:preferredName "unsubscribeMessage"@en ;
samm:description "Message from a customer to unsubscribe the GetShopfloorInformation"@en ;
samm:characteristic :CXHeaderCharacteristic .

:CXHeaderCharacteristic a samm:Characteristic ;
samm:preferredName "CXHeaderCharacteristic"@en ;
samm:description "all information required for a header specified by CX"@en ;
samm:dataType ext-header:MessageHeader .

1 change: 1 addition & 0 deletions io.catenax.mp_standard_unsubscribe/1.0.0/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ "status" : "release" }
7 changes: 7 additions & 0 deletions io.catenax.mp_standard_unsubscribe/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

All notable changes to this model will be documented in this file.

## [1.0.0]

- initial version of the aspect model for UnsubscribeShopfloorInformation

0 comments on commit 808f692

Please sign in to comment.