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

feat(ShortTermMaterialDemand): added initial model #668

Merged
Merged
Show file tree
Hide file tree
Changes from 2 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,184 @@
#######################################################################
# Copyright (c) 2024 BASF SE
# Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
# Copyright (c) 2024 Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V. (represented by Fraunhofer IML and Fraunhofer ISST)
# Copyright (c) 2024 Henkel AG & Co. KGaA
# Copyright (c) 2024 ISTOS GmbH (a member of the DMG Mori Group)
# Copyright (c) 2024 Mercedes Benz AG
# Copyright (c) 2024 SAP SE
# Copyright (c) 2024 SupplyOn AG
# Copyright (c) 2024 TRUMPF Werkzeugmaschinen SE + Co. KG
# Copyright (c) 2024 Volkswagen AG
# Copyright (c) 2024 ZF Friedrichshafen AG
# Copyright (c) 2024 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.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.short_term_material_demand:1.0.0#> .
@prefix ext-number: <urn:samm:io.catenax.shared.business_partner_number:2.0.0#> .
@prefix ext-quantity: <urn:samm:io.catenax.shared.quantity:2.0.0#> .
@prefix ext-uuid: <urn:samm:io.catenax.shared.uuid:2.0.0#> .

:ShortTermMaterialDemand a samm:Aspect ;
samm:preferredName "Material Demand Base"@en ;
samm:description "The requirements of a customer towards a specific supplier for a specific material. Each material demand is unique by its Customer, Supplier and Material Number."@en ;
samm:properties ( :demandSeries :changedAt :materialGlobalAssetId ) ;
samm:operations ( ) ;
samm:events ( ) .

:demandSeries a samm:Property ;
samm:preferredName "Demand Series"@en ;
samm:description "The demands for a dedicated material in a given time period of a given demand rate, distinguished by their demand location and demand category."@en ;
samm:characteristic :DemandSeriesSet .

:changedAt a samm:Property ;
samm:preferredName "Changed At"@en ;
samm:description "Point in time when the content (any property according to the data model) of the material demand was changed, at the customer, either by a human user or an automated process."@en ;
samm:characteristic samm-c:Timestamp ;
samm:exampleValue "2023-11-05T08:15:30.123-05:00"^^xsd:dateTime .

:materialGlobalAssetId a samm:Property ;
samm:preferredName "UUID of the Part Type Twin"@en ;
samm:description "Identifier used uniquely to identify part type twin."@en ;
samm:characteristic ext-uuid:UuidV4Trait ;
samm:exampleValue "urn:uuid:48878d48-6f1d-47f5-8ded-a441d0d879df" .

:DemandSeriesSet a samm-c:Set ;
samm:preferredName "Demand Series Set"@en ;
samm:description "A set of demand series belonging to a certain material demand. Each demand series in the set must have a unique combination of customer location and demand category."@en ;
samm:dataType :DemandSeries .

:DemandSeries a samm:Entity ;
samm:preferredName "Demand Series"@en ;
samm:description "Encapsulates the demand series related information."@en ;
samm:properties ( :demands :demandCategory :expectedSupplierLocationBpns :customerLocationBpns ) .

:demands a samm:Property ;
samm:preferredName "Demands"@en ;
samm:description "A time series with a specified demand rate along a given time period to describe the demand values for this demand series."@en ;
samm:characteristic :DemandTimeSeries .

:DemandTimeSeries a samm-c:SortedSet ;
samm:preferredName "Demand Time Series"@en ;
samm:description "The demands in a given time period for a given demand rate."@en ;
samm:dataType :Demand .

:Demand a samm:Entity ;
samm:preferredName "Demand"@en ;
samm:description "A single demand for a given point in time according to the demand rate."@en ;
samm:properties ( :demand :day ) .

:day a samm:Property ;
samm:preferredName "Day"@en ;
samm:description "Day of the demand quantity. This demand should be as close as possible to the demand that is derived from the actual production program."@en ;
samm:characteristic :PointInTimeCharacteristic ;
samm:exampleValue "2023-10-09"^^xsd:date .

:PointInTimeCharacteristic a samm:Characteristic ;
samm:preferredName "Point in Time Characteristic"@en ;
samm:description "An ISO day on which a given demand is needed. Must be given as single day (consider the time zone of the customer's location). (ISO-8601)"@en ;
samm:see <https://www.iso.org/iso-8601-date-and-time-format.html> ;
samm:dataType xsd:date .

:demand a samm:Property ;
samm:preferredName "Demand"@en ;
samm:description "Quantity of materials required in the specified point in time according specified demand rate. This demand should be as close as possible to demand that is derived from the actual production program."@en ;
samm:characteristic :DemandQuantityCharacteristic .

:DemandQuantityCharacteristic a samm:Characteristic ;
samm:preferredName "Demand Quantity Characteristic"@en ;
samm:description "Demand expressed as item quantity with a unit of measure."@en ;
samm:dataType ext-quantity:ItemQuantityEntity .

:demandCategory a samm:Property ;
samm:preferredName "Demand Category"@en ;
samm:description "Type of demand for this demand series."@en ;
samm:characteristic :DemandCategoryCharacteristic .

:DemandCategoryCharacteristic a samm-c:Enumeration ;
samm:preferredName "Demand Category Characteristic"@en ;
samm:description "The classification of demands used for prioritization or allocation."@en ;
samm:dataType :DemandCategoryType ;
samm-c:values ( :DemandCategoryDefault :DemandCategoryAfterSales :DemandCategorySeries :DemandCategoryPhaseInPeriod :DemandCategorySingleOrder :DemandCategorySmallSeries :DemandCategoryExtraordinaryDemand :DemandCategoryPhaseOutPeriod ) .

:DemandCategoryType a samm:Entity ;
samm:preferredName "Demand Category Type"@en ;
samm:description "Describes the type of a demand category."@en ;
samm:properties ( :demandCategoryCode [ samm:property :demandCategoryName; samm:notInPayload true ] ) .

:DemandCategoryDefault a :DemandCategoryType ;
:demandCategoryCode "0001" ;
:demandCategoryName "Default"@en .

:DemandCategoryAfterSales a :DemandCategoryType ;
:demandCategoryCode "A1S1" ;
:demandCategoryName "After-Sales"@en .

:DemandCategorySeries a :DemandCategoryType ;
:demandCategoryCode "SR99" ;
:demandCategoryName "Series"@en .

:DemandCategoryPhaseInPeriod a :DemandCategoryType ;
:demandCategoryCode "PI01" ;
:demandCategoryName "Phase-In Period"@en .

:DemandCategorySingleOrder a :DemandCategoryType ;
:demandCategoryCode "OS01" ;
:demandCategoryName "Single Order"@en .

:DemandCategorySmallSeries a :DemandCategoryType ;
:demandCategoryCode "OI01" ;
:demandCategoryName "Small Series"@en .

:DemandCategoryExtraordinaryDemand a :DemandCategoryType ;
:demandCategoryCode "ED01" ;
:demandCategoryName "Extraordinary Demand"@en .

:DemandCategoryPhaseOutPeriod a :DemandCategoryType ;
:demandCategoryCode "PO01" ;
:demandCategoryName "Phase-Out Period"@en .

:demandCategoryCode a samm:Property ;
samm:preferredName "Demand Category Code"@en ;
samm:description "The code identifying a demand category."@en ;
samm:characteristic :DemandCategoryCodeCharacteristic ;
samm:exampleValue "0001" .

:demandCategoryName a samm:Property ;
samm:preferredName "Demand Category Name"@en ;
samm:description "The name describing a demand category."@en ;
samm:characteristic samm-c:MultiLanguageText ;
samm:exampleValue "Default"@en .

:DemandCategoryCodeCharacteristic a samm-c:Code ;
samm:preferredName "Demand Category Code Characteristic"@en ;
samm:description "The code identifying a demand category."@en ;
samm:dataType xsd:string .

:customerLocationBpns a samm:Property ;
samm:preferredName "Customer Location"@en ;
samm:description "The Business Partner Number Site (BPNS) of the site at which the customer needs the specified material for this demand series."@en ;
samm:characteristic ext-number:BpnsTrait ;
samm:exampleValue "BPNS8888888888XX" .

:expectedSupplierLocationBpns a samm:Property ;
samm:preferredName "Expected Supplier Location"@en ;
samm:description "The Business Partner Number Site (BPNS) of the site from where the customer expects the supplier to fulfill the demands of the demand series. The value is used for informational purposes only and is therefore not binding for the supplier."@en ;
samm:characteristic ext-number:BpnsTrait ;
samm:exampleValue "BPNS8888888888XX" .
1 change: 1 addition & 0 deletions io.catenax.short_term_material_demand/1.0.0/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"status": "release"}
25 changes: 25 additions & 0 deletions io.catenax.short_term_material_demand/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog
All notable changes to this model will be documented in this file.

## [1.0.0] - 2024-02-26
### Added
- initial model adjusted based on io.catenax.material_demand:1.0.0
- removed all material related information except for materialGlobalAssetId
- removed demandId
- replaced unitOfMeasure and demand by io.catenax.shared.quantity:2.0.0
- migrated to samm 2.1.0
- removed unitOfMeasureIsOmmitted

### Changed
- compared to io.catenax.material_demand:1.0.0
- renamed expectedSupplierLocation to expectedSupplierLocationBpns
- renamed customerLocation to customerLocationBpns
- replaced pointInTime by day

### Removed
- compared to io.catenax.material_demand:1.0.0
- removed all material related information except for materialGlobalAssetId (materialDescriptionCustomer, materialNumberSupplier, materialNumberCustomer)
- removed demandId
- removed unitOfMeasureIsOmmitted
- removed demandRate
- removed supplier and customer
Loading