-
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
created first version of getShopfloorInformationAspect #235
Merged
bs-jokri
merged 4 commits into
eclipse-tractusx:main
from
wehrstedt-jan:getShopfloorInformation
Sep 25, 2023
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
91 changes: 91 additions & 0 deletions
91
io.catenax.shopfloor_information.get_production_forecast/1.0.0/GetProductionForecast.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,91 @@ | ||
########################################################################################## | ||
# Copyright (c) 2023 Fraunhofer Institute of Optronics, System Technology and Image Exploitation (IOSB) | ||
# 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.shopfloor_information.production_forecast_request:1.0.0#> . | ||
@prefix ext-header: <urn:samm:io.catenax.shared.message_header:1.0.0#> . | ||
@prefix ext-types: <urn:samm:io.catenax.shared.shopfloor_information_types:1.0.0#> . | ||
|
||
:GetProductionForecast a samm:Aspect ; | ||
samm:preferredName "Get Production Forecast"@en ; | ||
samm:description "Aspect Model to request a production forecast"@en ; | ||
samm:properties ( [ samm:property :request; samm:optional true ] ext-header:header ) ; | ||
samm:operations ( ) ; | ||
samm:events ( ) . | ||
|
||
:request a samm:Property ; | ||
samm:preferredName "Request"@en ; | ||
samm:description "Data model for a request"@en ; | ||
samm:characteristic :RequestCharacteristic . | ||
|
||
:RequestCharacteristic a samm:Characteristic ; | ||
samm:preferredName "Request Characteristic"@en ; | ||
samm:description "Data type for a request"@en ; | ||
samm:dataType :RequestEntity . | ||
|
||
:RequestEntity a samm:Entity ; | ||
samm:preferredName "Request Entity"@en ; | ||
samm:description "Entity for a request of a production forecast"@en ; | ||
samm:properties ( :offset :customerId [ samm:property :precisionOfForecast; samm:optional true ] :productionForecastForAll :orderId [ samm:property :deviationOfSchedule; samm:optional true ] [ samm:property :notificationInterval; samm:optional true ] ext-types:communicationMode ext-types:versionDataModel ) . | ||
|
||
:offset a samm:Property ; | ||
samm:preferredName "offset"@en ; | ||
samm:description "Send/start time of the first message/notification\n- \"0\" ==> immediate response"@en ; | ||
samm:characteristic :TimeValueCharacteristic . | ||
|
||
:customerId a samm:Property ; | ||
samm:preferredName "customerId"@en ; | ||
samm:description "Internal customerId"@en ; | ||
samm:characteristic ext-header:BpnCharacteristic ; | ||
samm:exampleValue "BPNL7588787849VQ" . | ||
|
||
:precisionOfForecast a samm:Property ; | ||
samm:preferredName "Precision of forecast"@en ; | ||
samm:description "Accuracy of the time specification of the completion date.\n- default: implicitly defined by production\n- only as a REQUEST of the requester since it cannot be guaranteed that the store floor can provide the data in this accuracy."@en ; | ||
samm:characteristic :TimeValueCharacteristic . | ||
|
||
:productionForecastForAll a samm:Property ; | ||
samm:preferredName "Production forecast for all"@en ; | ||
samm:description "Boolean variable that detemines whether the customer request information about each position of an order, or information about the complete order"@en ; | ||
samm:characteristic samm-c:Boolean ; | ||
samm:exampleValue false . | ||
|
||
:orderId a samm:Property ; | ||
samm:preferredName "orderId"@en ; | ||
samm:description "The Id identifying subject of the request"@en ; | ||
samm:characteristic ext-header:UuidCharacteristic ; | ||
samm:exampleValue "00000000-0000-0000-C000-000000000046" . | ||
|
||
:deviationOfSchedule a samm:Property ; | ||
samm:preferredName "Deviation of Schedule"@en ; | ||
samm:description "Mandatory property for the notification mode. The property specifies the deviation from targeted delivery date that must be met to send a notification to a subscriber\n\nmandatory for CommunicationMode = \"notification\""@en ; | ||
samm:characteristic :TimeValueCharacteristic . | ||
|
||
:notificationInterval a samm:Property ; | ||
samm:preferredName "Notification Interval"@en ; | ||
samm:description "Interval time that either specifies the cyclic send time or limits the notification time\nmandatory for CommunicationMode = \"cyclic\""@en ; | ||
samm:characteristic :TimeValueCharacteristic . | ||
|
||
:TimeValueCharacteristic a samm:Characteristic ; | ||
samm:preferredName "TimeValueCharacteristic"@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. no camel case normal orthography |
||
samm:description "Link to the TimeUnit Data Type"@en ; | ||
samm:dataType ext-types:TimeValue . | ||
|
1 change: 1 addition & 0 deletions
1
io.catenax.shopfloor_information.get_production_forecast/1.0.0/metadata.json
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" } |
7 changes: 7 additions & 0 deletions
7
io.catenax.shopfloor_information.get_production_forecast/RELEASE_NOTES.md
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,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 get production forecast |
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.
omit comma