-
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
first version of UnsubscribeShopfloorInformation #237
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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#> . | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Which model is that? Where do I get it from? |
||
|
||
:UnsubscribeShopfloorInformation a samm:Aspect ; | ||
samm:preferredName "UnsubscribeShopfloorInformation"@en ; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please use normal orthography and proper noun. For whole model. Will not comment any further occasions |
||
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 . | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ "status" : "release" } |
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] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add date of MS3 approval as soon as it is available |
||
|
||
- initial version of the aspect model for UnsubscribeShopfloorInformation |
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.
Copyright (c) 2023 Contributors to the Eclipse Foundation