Skip to content

Commit

Permalink
fix: message header prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikoeh committed Aug 4, 2023
1 parent e16f404 commit c6f61a4
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
@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.get_production_forecast:1.0.0#> .
@prefix ext-header: <urn:samm:io.catenax.message_header:1.0.0#> .
@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 ;
Expand All @@ -33,18 +33,18 @@

:request a samm:Property ;
samm:preferredName "Request"@en ;
samm:description "Data model for a request"@en ;
samm:description "Data model for a request"@en ;
samm:characteristic :RequestCharacteristic .

:RequestCharacteristic a samm:Characteristic ;
samm:preferredName "Request Characteristic"@en ;
samm:description "DataType for a request"@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 ] :productionForecast4All :orderId [ samm:property :deviationOfSchedule; samm:optional true ] [ samm:property :notificationInterval; samm:optional true ] ext-types:communicationMode ext-types:versionDataModel ) .
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 ;
Expand All @@ -59,10 +59,10 @@

: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: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 .

:productionForecast4All a samm:Property ;
: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 ;
Expand Down

0 comments on commit c6f61a4

Please sign in to comment.