From d5665123ba674367bdb20798e171d984fffe12b1 Mon Sep 17 00:00:00 2001 From: ds-mkanal <100209308+mkanal@users.noreply.github.com> Date: Fri, 19 Jul 2024 09:59:23 +0200 Subject: [PATCH 01/22] fix/#1221-fix-format --- COMPATIBILITY_MATRIX.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/COMPATIBILITY_MATRIX.md b/COMPATIBILITY_MATRIX.md index 0a8bcdf867..866148c24a 100644 --- a/COMPATIBILITY_MATRIX.md +++ b/COMPATIBILITY_MATRIX.md @@ -3,8 +3,8 @@ ### Catena-X Release? -- [] yes -- [] no +- [ ] yes +- [ ] no ### Helm Version [x.x.x](https://github.com/eclipse-tractusx/traceability-foss/releases/tag/helm-charts-x.x.x) @@ -32,7 +32,7 @@ ### Catena-X Release? -- [] yes +- [ ] yes - [x] no ### Helm Version [1.3.40](https://github.com/eclipse-tractusx/traceability-foss/releases/tag/helm-charts-1.3.40) @@ -63,7 +63,7 @@ ### Catena-X Release? -- [] yes +- [ ] yes - [x] no ### Helm Version [1.3.39](https://github.com/eclipse-tractusx/traceability-foss/releases/tag/helm-charts-1.3.39) From 9b27cd2b2b956d385204f236b2a0096a8bbb1f2f Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 08:59:27 +0200 Subject: [PATCH 02/22] fix(README):[#1070] appropriate README.md 2 --- README.md | 6 +++--- tx-backend/INSTALL.md | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c33562104e..941c980908 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ Please find [here](frontend/AUTHENTICATION.md) some important information about ### Application Architecture & Patterns -This [architecture](frontend/ARCHITECTURE.md) gives you a roadmap and best practices to follow when building an application +This [Architecture](frontend/ARCHITECTURE.md) gives you a roadmap and best practices to follow when building an application so that you end up with a well-structured app. ### User Guide @@ -149,7 +149,7 @@ so that you end up with a well-structured app. A detailed [explanation](docs/user/user-manual.adoc) of how to use the application. ### Frontend Testing Strategy -See [TESTING](frontend/TESTING.md). +See [Testing](frontend/TESTING.md). ## Backend Application @@ -163,7 +163,7 @@ See [TESTING](frontend/TESTING.md). * see [Installation guide](tx-backend/INSTALL.md) ### Backend Testing Strategy -See [TESTING](tx-backend/TESTING.md). +See [Testing](tx-backend/TESTING.md). ## API Documentation The project follows [OpenAPI Specification](https://swagger.io/specification/) in order to document implemented REST Endpoints. The documentation can be found under [/openapi directory](https://github.com/eclipse-tractusx/traceability-foss/blob/main/tx-backend/openapi/traceability-foss-backend.json) diff --git a/tx-backend/INSTALL.md b/tx-backend/INSTALL.md index 7acf28aed0..5ce45d8ff0 100644 --- a/tx-backend/INSTALL.md +++ b/tx-backend/INSTALL.md @@ -9,9 +9,9 @@ $ git clone https://github.com/eclipse-tractusx/traceability-foss.git $ cd traceability-foss ``` -Please note: Local deployment of the app is not supported. +Please note: Local deployment of the app is not supported. -For deployment please find our helm chart github actions here: https://github.com/eclipse-tractusx/traceability-foss/actions/workflows/helm-upgrade.yaml and https://github.com/eclipse-tractusx/traceability-foss/actions/workflows/helm-test-backwards-compatability.yaml. Within this actions the full application is configured to start up. +For deployment please find our helm chart github actions here: [helm-upgrade.yaml](../.github/workflows/helm-upgrade.yaml) and [helm-test-backwards-compatability.yaml](../.github/workflows/helm-test-backwards-compatability.yaml). Within this actions the full application is configured to start up. ## OAuth2 configuration Product Traceability FOSS Backend relies on properly configured OAuth2 instance. In order to work, it must be configured with proper realm, clients and roles. @@ -22,9 +22,10 @@ Users should have one of the following roles assigned: ## Helm secrets configuration Product Traceability FOSS Backend ships with helm charts and utilize [helm dependency](https://helm.sh/docs/helm/helm_dependency/) functionality for 3rd party components. -In order to deploy the service following secrets needs to be provided for specific environment [see project helm environment specifc files](https://github.com/eclipse-tractusx/traceability-foss/blob/main/charts/traceability-foss-backend): -### OAuth2 +### OAuth2 Properties +In order to deploy the service following secrets needs to be provided for specific environment [see project helm environment specifc files](../charts/traceability-foss/charts/backend/values.yaml): + * `oauth2.clientId` - OAuth2 client registration id credentials * `oauth2.clientSecret` - OAuth2 client registration secret credentials @@ -46,7 +47,7 @@ spring: flyway: clean-on-validation-error: false ``` -Database scripts are executed with Flyway. Put the scripts at [migration](https://github.com/eclipse-tractusx/traceability-foss/blob/main/backend/src/main/resources/db/migration) +Database scripts are executed with Flyway. Put the scripts at [migration](src/main/resources/db/migration) * `postgresql.secret.initUserDbSql` - database initialization script, contains username and password for databases used by the service. Please note that the final script should be encoded using Base64 encoding and then added to a secret. Sample command: @@ -62,7 +63,6 @@ echo -n 'CREATE ROLE trace WITH LOGIN PASSWORD 'yourPassword';\nCREATE DATABASE ## Helm installation Add the Trace-X Backend Helm repository: - ```sh $ helm repo add traceability-foss-backend https://eclipse-tractusx.github.io/traceability-foss-backend ``` From 7dd41b2487e349dcdc635c6c0f9cbc92147e8922 Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 11:02:55 +0200 Subject: [PATCH 03/22] fix(CONTRIBUTING):[#1070] fix contribution file --- CONTRIBUTING.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index db71c86706..bde7cd2d45 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to Eclipse Tractus-X +# Contributing to Eclipse Tractus-X Thanks for your interest in this project. @@ -15,7 +15,7 @@ Thanks for your interest in this project. 10. [Contact](#contact) -## Project description +## Project description The companies involved want to increase the automotive industry's competitiveness, improve efficiency through industry-specific cooperation and @@ -30,20 +30,20 @@ Catena-X alliance focusing on parts traceability. - https://projects.eclipse.org/projects/automotive.tractusx - https://github.com/eclipse-tractusx/traceability-foss -## Project licenses +## Project licenses The Tractus-X project uses the following licenses: -* Apache-2.0 for code -* CC-BY-4.0 for non-code +- [Apache-2.0 for code](LICENSE) +- [CC-BY-4.0 for non-code](LICENSE_non-code) -## Terms of Use +## Terms of Use This repository is subject to the Terms of Use of the Eclipse Foundation -* https://www.eclipse.org/legal/termsofuse.php +- https://www.eclipse.org/legal/termsofuse.php -## Developer resources +## Developer resources Information regarding source code management, builds, coding standards, and more. @@ -52,13 +52,13 @@ more. Getting started: -* https://eclipse-tractusx.github.io/docs/developer +- https://eclipse-tractusx.github.io/docs/developer The project maintains the source code repositories in the following GitHub organization: - https://github.com/eclipse-tractusx/ -## Eclipse Development Process +## Eclipse Development Process This Eclipse Foundation open project is governed by the Eclipse Foundation Development Process and operates under the terms of the Eclipse IP Policy. @@ -66,7 +66,7 @@ Development Process and operates under the terms of the Eclipse IP Policy. - https://eclipse.org/projects/dev_process - https://www.eclipse.org/org/documents/Eclipse_IP_Policy.pdf -## Eclipse Contributor Agreement +## Eclipse Contributor Agreement In order to be able to contribute to Eclipse Foundation projects you must electronically sign the Eclipse Contributor Agreement (ECA). @@ -82,7 +82,7 @@ fulfills the DCO's requirement that you sign-off on your contributions. For more information, please see the Eclipse Committer Handbook: https://www.eclipse.org/projects/handbook/#resources-commit -## General contribution to the project +## General contribution to the project ### Maintaining [CHANGELOG.md](CHANGELOG.md) All notable changes to this project will be documented in this file. @@ -104,7 +104,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha ### git-hooks Use git-hooks to ensure commit message consistency. -Detailed pattern can be found here: [commit-msg](https://github.com/eclipse-tractusx/traceability-foss/blob/457cb3523e981ef6aed98355a7faf0ff29867c33/dev/commit-msg#L4) +Detailed pattern can be found here: [commit-msg](dev/commit-msg#L4) #### How to use @@ -128,7 +128,7 @@ docs(arc42):[#123] Added level 1 description for runtime view. chore(helm):[#113] Moving the values under the global key - increasing the version ```` -## Pull Request &  Reviews +## Pull Request & Reviews The goal is that the maximal life cycle of a pull request: 1.5 days. @@ -162,7 +162,7 @@ Only after the code is stable it can be merged to main. - MUST contain : Issue ID in the format #XXX - MUST contain: Subject of issue (Abbreviation of pbi summary without using spaces / use "-" to connect) - +![github-flow-branching-model](docs/images/github-flow-branching-model.svg "github-flow-branching-model") ### Commit messages - The commit messages have to match a pattern in the form of: @@ -173,21 +173,21 @@ Examples: - `feature(users): #DDD description` - `fix: #322 make X work again` -The detailed pattern can be found here: [commit-msg](https://github.com/eclipse-tractusx/traceability-foss/blob/main/dev/commit-msg) +The detailed pattern can be found here: [commit-msg](dev/commit-msg) #### How to use ```shell cp dev/commit-msg .git/hooks/commit-msg && chmod 500 .git/hooks/commit-msg ``` -## Contributing as a Consultant +## Contributing as a Consultant ### Conceptual work and specification guidelines 1. The prerequisite for a concept is always a github issue that defines the business value and the acceptance criteria that are to be implemented with the concept 2. Copy and rename directory /docs/#000-concept-name-template /docs/#- 3. Copy file /docs/Concept_TEMPLATE.md into new directory /docs/#- -## Contributing as a Developer (Developer Hints) +## Contributing as a Developer (Developer Hints) ### Coding styles @@ -225,7 +225,7 @@ By following these steps, you can connect your remote SonarCloud instance with y ### Frontend coding guidelines These guidelines are defined to maintain homogeneous code quality and style. It can be adapted as the need arises. -New and old developers should regularly review this [guide](https://github.com/eclipse-tractusx/traceability-foss/blob/main/frontend/GUIDELINES.md) to update it as new points emerge and to sync themselves with the latest changes. +New and old developers should regularly review this [guide](frontend/GUIDELINES.md) to update it as new points emerge and to sync themselves with the latest changes. #### Angular Template Attribute Convention From 58a8a929c1d542996694606f174b6bdca4f755c2 Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 11:12:30 +0200 Subject: [PATCH 04/22] chore(NOTICE):[#1070] update notice file with current references --- NOTICE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NOTICE.md b/NOTICE.md index 37ea8ca8af..2fafc9deeb 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -20,8 +20,8 @@ source code repository logs. The Tractus-X project uses the following licenses: -- Apache-2.0 for code -- CC-BY-4.0 for non-code +- [Apache-2.0 for code](LICENSE) +- [CC-BY-4.0 for non-code](LICENSE_non-code) Apache-2.0: This program and the accompanying materials are made available under the terms of the Apache License, Version 2.0 which is available at https://www.apache.org/licenses/LICENSE-2.0. @@ -42,7 +42,7 @@ in the GitHub organization https://github.com/eclipse-tractusx: This project leverages the following third party content. -See DEPENDENCIES_BACKEND and DEPENDENCIES_FRONTEND file. +See [DEPENDENCIES_BACKEND](DEPENDENCIES_BACKEND) and [DEPENDENCIES_FRONTEND](DEPENDENCIES_FRONTEND) file. ## Cryptography From efc4070d45272743576b5c74dfc88a4a508cfc22 Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 11:17:00 +0200 Subject: [PATCH 05/22] fix(INSTLALL):[#1070] Add INSTALL.md on root level --- INSTALL.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 INSTALL.md diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 0000000000..ffdc4138a5 --- /dev/null +++ b/INSTALL.md @@ -0,0 +1,9 @@ +# Installation Instructions + +## Installation Instructions Frontend + +- [Installation Instructions Frontend](frontend/INSTALL.md) + +## Installation Instructions Backend + +- [Installation Instructions Backend](tx-backend/INSTALL.md) From 7785d7346288b9fcd90b5279f9ddb8d2d0a8b6c9 Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 11:26:41 +0200 Subject: [PATCH 06/22] fix(INSTALL):[#1070] remove html from INSTALL.md --- tx-backend/INSTALL.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tx-backend/INSTALL.md b/tx-backend/INSTALL.md index 5ce45d8ff0..d7ed01d171 100644 --- a/tx-backend/INSTALL.md +++ b/tx-backend/INSTALL.md @@ -1,7 +1,5 @@ -
- Product Traceability FOSS Backend Installation Guide -

Product Traceability FOSS Backend Installation guide

-
+![Trace-X](../docs/trace-x-logo.svg) +# Product Traceability FOSS Backend Installation guide ## Clone the source locally: @@ -24,7 +22,7 @@ Users should have one of the following roles assigned: Product Traceability FOSS Backend ships with helm charts and utilize [helm dependency](https://helm.sh/docs/helm/helm_dependency/) functionality for 3rd party components. ### OAuth2 Properties -In order to deploy the service following secrets needs to be provided for specific environment [see project helm environment specifc files](../charts/traceability-foss/charts/backend/values.yaml): +In order to deploy the service following secrets needs to be provided for specific environment [project helm environment specific files](../charts/traceability-foss/charts/backend/values.yaml): * `oauth2.clientId` - OAuth2 client registration id credentials * `oauth2.clientSecret` - OAuth2 client registration secret credentials @@ -72,7 +70,7 @@ Then install the Helm chart into your cluster: $ helm install -f your-values.yaml traceability-foss backend/traceability-foss-backend ``` -== Deployment using ArgoCD +## Deployment using ArgoCD Create a new Helm chart and use Trace-X as a dependency. From 5d17c1641370f2cb95ada598a0df77a1edd97d43 Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 12:24:47 +0200 Subject: [PATCH 07/22] fix(DOCKER_NOTICE):[#1070] refactore DOCKER_NOTICE according to TRGS --- DOCKER_NOTICE.md | 4 ++-- frontend/DOCKER_NOTICE.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DOCKER_NOTICE.md b/DOCKER_NOTICE.md index 21184f383b..47978e515c 100644 --- a/DOCKER_NOTICE.md +++ b/DOCKER_NOTICE.md @@ -6,8 +6,8 @@ DockerHub Backend: https://hub.docker.com/r/tractusx/traceability-foss - GitHub: https://github.com/eclipse-tractusx/traceability-foss - Project home: https://projects.eclipse.org/projects/automotive.tractusx -- Dockerfile Backend: https://github.com/eclipse-tractusx/traceability-foss/blob/main/Dockerfile -- Project license: [Apache License, Version 2.0](https://github.com/eclipse-tractusx/traceability-foss/blob/main/LICENSE) +- Dockerfile Backend: [Dockerfile](Dockerfile) +- Project license: [Apache License, Version 2.0](LICENSE) **Used base image** - [eclipse-temurin:21-jre-alpine](https://github.com/adoptium/containers) diff --git a/frontend/DOCKER_NOTICE.md b/frontend/DOCKER_NOTICE.md index 2338efe1af..f34c90805e 100644 --- a/frontend/DOCKER_NOTICE.md +++ b/frontend/DOCKER_NOTICE.md @@ -6,8 +6,8 @@ DockerHub Frontend: https://hub.docker.com/r/tractusx/traceability-foss-frontend - GitHub: https://github.com/eclipse-tractusx/traceability-foss - Project home: https://projects.eclipse.org/projects/automotive.tractusx -- Dockerfile Frontend: https://github.com/eclipse-tractusx/traceability-foss/blob/main/frontend/Dockerfile -- Project license: [Apache License, Version 2.0](https://github.com/eclipse-tractusx/traceability-foss/blob/main/LICENSE) +- Dockerfile Frontend: [Dockerfile](frontend/Dockerfile) +- Project license: [Apache License, Version 2.0](LICENSE) **Used base image** From a399663d5ad15ee1552a285e140e2eb7bf4fe575 Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 12:29:17 +0200 Subject: [PATCH 08/22] fix(DOCKER_NOTICE):[#1070] add ____ --- DOCKER_NOTICE.md | 6 +++++- frontend/DOCKER_NOTICE.md | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/DOCKER_NOTICE.md b/DOCKER_NOTICE.md index 47978e515c..16a1567342 100644 --- a/DOCKER_NOTICE.md +++ b/DOCKER_NOTICE.md @@ -1,9 +1,13 @@ This application provides container images for demonstration purposes. -Eclipse Tractus-X product(s) installed within the image: +## Notice for Docker image DockerHub Backend: https://hub.docker.com/r/tractusx/traceability-foss +Eclipse Tractus-X product(s) installed within the image: + +__Traceability-foss__ + - GitHub: https://github.com/eclipse-tractusx/traceability-foss - Project home: https://projects.eclipse.org/projects/automotive.tractusx - Dockerfile Backend: [Dockerfile](Dockerfile) diff --git a/frontend/DOCKER_NOTICE.md b/frontend/DOCKER_NOTICE.md index f34c90805e..2e1d08e72f 100644 --- a/frontend/DOCKER_NOTICE.md +++ b/frontend/DOCKER_NOTICE.md @@ -1,9 +1,13 @@ This application provides container images for demonstration purposes. -Eclipse Tractus-X product(s) installed within the image: +## Notice for Docker image DockerHub Frontend: https://hub.docker.com/r/tractusx/traceability-foss-frontend +Eclipse Tractus-X product(s) installed within the image: + +__Traceability-foss__ + - GitHub: https://github.com/eclipse-tractusx/traceability-foss - Project home: https://projects.eclipse.org/projects/automotive.tractusx - Dockerfile Frontend: [Dockerfile](frontend/Dockerfile) From 17dd59d7da3f854cb8850db4745cd99f75aa5b97 Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 12:49:16 +0200 Subject: [PATCH 09/22] fix(DOCKER_NOTICE):[#1070] update jdk from 17 to 21 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 941c980908..d8a3eda1ac 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ See [Testing](frontend/TESTING.md). ### Backend Prerequisites -* JDK 17 +* JDK 21 * [Docker Engine](https://docs.docker.com/engine/) ### Backend Installation From 84b13b8e23ed0bfc9799e458749b139ae0b18abf Mon Sep 17 00:00:00 2001 From: ds-lcapellino Date: Mon, 22 Jul 2024 12:58:19 +0200 Subject: [PATCH 10/22] feature: #1230 change BPNL00000003CML1 to BPNL000000000UKM; change BPNL00000003CNKC to BPNL000000000DWF ; add association test data --- dev/README.md | 14 +- ...tdata_MessagingTest_v0.0.14-consortia.json | 2646 +++++++++++++++++ .../CX_Testdata_MessagingTest_v0.0.14.json | 246 +- .../import-test-data-0DWF_v0.0.14.json | 1106 +++++++ .../import-test-data-0UKM_v0.0.14.json | 1340 +++++++++ 5 files changed, 5228 insertions(+), 124 deletions(-) create mode 100644 tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-consortia.json create mode 100644 tx-backend/testdata/import-test-data-0DWF_v0.0.14.json create mode 100644 tx-backend/testdata/import-test-data-0UKM_v0.0.14.json diff --git a/dev/README.md b/dev/README.md index 939028b3a7..28585083f0 100644 --- a/dev/README.md +++ b/dev/README.md @@ -77,6 +77,18 @@ Sample invocation (STABLE B) python transform-and-upload.py -f CX_Testdata_MessagingTest_v0.0.12.json -s https://traceability-stable-b.stable.demo.catena-x.net/api/submodel -edc https://trace-x-edc-stable-b.stable.demo.catena-x.net -a https://trace-x-registry-stable-b.stable.demo.catena-x.net/semantics/registry/api/v3.0 -d https://trace-x-edc-stable-b-dataplane.stable.demo.catena-x.net -p id-3.0-trace -k --aas3 --edcBPN BPNL00000003CML1 BPNL00000003CNKC BPNL00000003AZQP BPNL00000003CSGV --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC BPNL00000003AZQP BPNL00000003CSGV ``` +Sample invocation (ASSOCIATION INT A) + +``` +python transform-and-upload.py -f CX_Testdata_MessagingTest_v0.0.12.json -s https://traceability-int-a.int.catena-x.net/api/submodel -edc https://trace-x-edc-int-a.int.catena-x.net -a https://trace-x-registry-int-a.int.catena-x.net/semantics/registry/api/v3.0 -d https://trace-x-edc-int-a-dataplane.int.catena-x.net -p id-3.0-trace -k --aas3 --edcBPN BPNL000000000UKM BPNL000000000DWF BPNL00000003AZQP BPNL00000003CSGV --allowedBPNs BPNL000000000UKM BPNL000000000DWF BPNL00000003AZQP BPNL00000003CSGV +``` + +Sample invocation (ASSOCIATION INT B) + +``` +python transform-and-upload.py -f CX_Testdata_MessagingTest_v0.0.12.json -s https://traceability-int-b.int.catena-x.net/api/submodel -edc https://trace-x-edc-int-b.int.catena-x.net -a https://trace-x-registry-int-b.int.catena-x.net/semantics/registry/api/v3.0 -d https://trace-x-edc-int-b-dataplane.int.catena-x.net -p id-3.0-trace -k --aas3 --edcBPN BPNL000000000UKM BPNL000000000DWF BPNL00000003AZQP BPNL00000003CSGV --allowedBPNs BPNL000000000UKM BPNL000000000DWF BPNL00000003AZQP BPNL00000003CSGV +``` + where: * -f file to be used for data provisioning /tx-backend/testdata/CX_Testdata_MessagingTest_vx.x.x.json @@ -204,7 +216,7 @@ Is achieved by defining the order of the BPNLs of the desired manufacturers. See }, { "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", - "bpnl" : "BPNL00000003CNKC" + "bpnl": "BPNL00000003CNKC" } ] diff --git a/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-consortia.json b/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-consortia.json new file mode 100644 index 0000000000..69f0cfa325 --- /dev/null +++ b/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-consortia.json @@ -0,0 +1,2646 @@ +{ + "policies" : { + "traceability-core" : { + "@context" : { + "odrl" : "http://www.w3.org/ns/odrl/2/" + }, + "@type" : "PolicyDefinitionRequestDto", + "@id" : "traceability-core", + "policy" : { + "@type" : "odrl:Set", + "odrl:permission" : [ + { + "odrl:action" : "use", + "odrl:constraint" : { + "@type" : "AtomicConstraint", + "odrl:and" : [ + { + "@type" : "Constraint", + "odrl:leftOperand" : "https://w3id.org/catenax/policy/FrameworkAgreement", + "odrl:operator" : { + "@id" : "odrl:eq" + }, + "odrl:rightOperand" : "traceability:1.0" + }, + { + "@type" : "Constraint", + "odrl:leftOperand" : "https://w3id.org/catenax/policy/UsagePurpose", + "odrl:operator" : { + "@id" : "odrl:eq" + }, + "odrl:rightOperand" : "cx.core.industrycore:1" + } + ] + } + } + ] + } + } + }, + "https://catenax.io/schema/TestDataContainer/1.0.0" : [ + { + "catenaXId" : "urn:uuid:0fed587c-7ab4-4597-9841-1718e9693003", + "bpnl" : "BPNL00000003CML1", + "PlainObject" : [ + { + "BPN_OEM_C" : "BPNL00000003CML1", + "BPN_OEM_A" : "BPNL00000003CSGV", + "BPN_OEM_B" : "BPNL00000003AZQP", + "BPN_OEM_D" : "BPNL00000003CNKC", + "CREATION_DATE" : "2022-09-26T12:43:51.079Z" + } + ] + }, + { + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "businessPartner" : "BPNL00000003CNKC", + "hasAlternatives" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "OMAOYGBDTSRCMYSCX", + "key" : "partInstanceId" + }, + { + "value" : "OMAOYGBDTSRCMYSCX", + "key" : "van" + } + ], + "manufacturingInformation" : { + "date" : "2018-09-28T04:15:57.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "partTypeInformation" : { + "manufacturerPartId" : "3500076-05", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Vehicle Hybrid" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2023-02-20T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:1d2d8480-90a5-4a17-9ecb-2ff039d35fec", + "businessPartner" : "BPNL00000003CSGV", + "hasAlternatives" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-313869652971440618042264", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "b/test Door front-left" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "createdOn" : "2023-05-29T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:1d2d8480-90a5-4a17-9ecb-2ff039d35fec", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, + { + "value" : "NO-584478761469608738361558", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1d2d8480-90a5-4a17-9ecb-2ff039d35fec", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:1d2d8480-90a5-4a17-9ecb-2ff039d35fec", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "createdOn" : "2023-06-18T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "isOnlyPotentialParent" : false, + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2021-01-15T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "businessPartner" : "BPNL00000003CNKC", + "hasAlternatives" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "OMAYSKEITUGNVHKKX", + "key" : "partInstanceId" + }, + { + "value" : "OMAYSKEITUGNVHKKX", + "key" : "van" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", + "partTypeInformation" : { + "manufacturerPartId" : "4922009-56", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Vehicle Hybrid" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2020-05-02T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", + "businessPartner" : "BPNL00000003CML1", + "hasAlternatives" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-989134870198932317923938", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "partTypeInformation" : { + "manufacturerPartId" : "3880383-57", + "customerPartId" : "3880383-57", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", + "createdOn" : "2023-07-15T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-493575190274381019348907", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", + "partTypeInformation" : { + "manufacturerPartId" : "6683834-82", + "customerPartId" : "6683834-82", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "createdOn" : "2023-12-05T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CNKC", + "isOnlyPotentialParent" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2022-11-22T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "businessPartner" : "BPNL00000003CNKC", + "hasAlternatives" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "OMAZRXWWMSPTQUEKI", + "key" : "partInstanceId" + }, + { + "value" : "OMAZRXWWMSPTQUEKI", + "key" : "van" + } + ], + "manufacturingInformation" : { + "date" : "2015-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", + "partTypeInformation" : { + "manufacturerPartId" : "5519583-63", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Vehicle Hybrid" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2018-09-17T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", + "businessPartner" : "BPNL00000003CML1", + "hasAlternatives" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-004314332935115065980115", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "partTypeInformation" : { + "manufacturerPartId" : "9069675-60", + "customerPartId" : "9069675-60", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", + "createdOn" : "2023-02-16T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-246880451848384868750731", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", + "partTypeInformation" : { + "manufacturerPartId" : "8770123-80", + "customerPartId" : "8770123-80", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key", + "nameAtCustomer" : "Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "createdOn" : "2023-04-13T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CNKC", + "isOnlyPotentialParent" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:4d33bfa6-0f1f-43a5-ad63-c3fe07a2d076", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:4d33bfa6-0f1f-43a5-ad63-c3fe07a2d076", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2021-10-24T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "businessPartner" : "BPNL00000003CNKC", + "hasAlternatives" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, + { + "value" : "OMAFIVCDHEBNXKNHH", + "key" : "partInstanceId" + }, + { + "value" : "OMAFIVCDHEBNXKNHH", + "key" : "van" + } + ], + "manufacturingInformation" : { + "date" : "2015-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4d33bfa6-0f1f-43a5-ad63-c3fe07a2d076", + "partTypeInformation" : { + "manufacturerPartId" : "9321782-89", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Vehicle Hybrid" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2022-06-28T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", + "businessPartner" : "BPNL00000003CML1", + "hasAlternatives" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-477013846751358222215326", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "partTypeInformation" : { + "manufacturerPartId" : "9879317-51", + "customerPartId" : "9879317-51", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "customers" : [ + "BPNL00000003CSGV" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:4d33bfa6-0f1f-43a5-ad63-c3fe07a2d076", + "createdOn" : "2023-03-03T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CSGV", + "isOnlyPotentialParent" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-613963493493659233961306", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", + "partTypeInformation" : { + "manufacturerPartId" : "5756987-94", + "customerPartId" : "5756987-94", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key", + "nameAtCustomer" : "Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "createdOn" : "2023-08-21T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "isOnlyPotentialParent" : false, + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284b170", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284b170", + "partTypeInformation" : { + "manufacturerPartId" : "5290709-55", + "classification" : "component", + "nameAtManufacturer" : "a/dev Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284b170", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", + "createdOn" : "2023-06-14T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "isOnlyPotentialParent" : false, + "businessPartner" : "BPNL00000003CML1" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa01", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa01", + "partTypeInformation" : { + "manufacturerPartId" : "9858559-85", + "classification" : "component", + "nameAtManufacturer" : "a/dev Door Key" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", + "partTypeInformation" : { + "manufacturerPartId" : "9623673-66", + "classification" : "component", + "nameAtManufacturer" : "a/dev Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2016-01-20T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", + "businessPartner" : "BPNL00000003CNKC", + "hasAlternatives" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", + "partTypeInformation" : { + "manufacturerPartId" : "5894914-94", + "classification" : "component", + "nameAtManufacturer" : "b/test Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", + "createdOn" : "2023-08-08T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", + "partTypeInformation" : { + "manufacturerPartId" : "6245773-32", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2019-08-15T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", + "businessPartner" : "BPNL00000003CML1", + "hasAlternatives" : false + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", + "partTypeInformation" : { + "manufacturerPartId" : "4902203-92", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key" + } + } + ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", + "createdOn" : "2022-07-03T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "isOnlyPotentialParent" : false, + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb03", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb03", + "partTypeInformation" : { + "manufacturerPartId" : "9770171-23", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door Key" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2019-04-04T03:19:03.000Z", + "validTo" : "2024-12-29T10:25:12.000Z" + }, + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "partTypeInformation" : { + "manufacturerPartId" : "9649571-63", + "classification" : "product", + "nameAtManufacturer" : "a/dev Vehicle Model A" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "sites" : [ + { + "functionValidUntil" : "2025-02-08T04:30:48.000Z", + "function" : "production", + "functionValidFrom" : "2019-08-21T02:10:36.000Z", + "catenaXSiteId" : "BPNS000004711DMY" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2022-08-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2019-04-04T03:19:03.000Z", + "validTo" : "2024-12-29T10:25:12.000Z" + }, + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "partTypeInformation" : { + "manufacturerPartId" : "7805659-25", + "classification" : "product", + "nameAtManufacturer" : "b/test Vehicle Model B" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "sites" : [ + { + "functionValidUntil" : "2025-02-08T04:30:48.000Z", + "function" : "production", + "functionValidFrom" : "2019-08-21T02:10:36.000Z", + "catenaXSiteId" : "BPNS000004711DMY" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2022-09-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "businessPartner" : "BPNL00000003CML1" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:580d3adf-1981-44a0-a214-13d6ceed6841", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "12345678ABC", + "key" : "jisNumber" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:580d3adf-1981-44a0-a214-13d6ceed6841", + "partTypeInformation" : { + "manufacturerPartId" : "3578115-43", + "customerPartId" : "PRT-12345", + "classification" : "product", + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "b/test side element A" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e43842", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "12345678ABC", + "key" : "jisNumber" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e43842", + "partTypeInformation" : { + "manufacturerPartId" : "8397292-13", + "customerPartId" : "PRT-12345", + "classification" : "product", + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "a/dev side element A" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "sites" : [ + { + "functionValidUntil" : "2027-05-23T09:16:30.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2013-11-17T23:59:54.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2015-05-18T23:10:44.000Z", + "validTo" : "2025-10-23T14:46:01.000Z" + }, + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "classification" : "product", + "nameAtManufacturer" : "a/dev OEM A High Voltage Battery" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-10-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ + { + "parentParts" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-11-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ], + "businessPartner" : "BPNL00000003CNKC", + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" + } + ] + }, + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "sites" : [ + { + "functionValidUntil" : "2025-04-04T04:14:11.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2018-03-24T13:38:32.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2017-01-03T07:45:04.000Z", + "validTo" : "2029-11-15T11:57:45.000Z" + }, + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "partTypeInformation" : { + "manufacturerPartId" : "2586427-48", + "classification" : "product", + "nameAtManufacturer" : "b/test Vehicle Model A" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-12-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "sites" : [ + { + "functionValidUntil" : "2031-11-21T03:24:27.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2020-06-07T07:30:47.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2018-01-25T08:42:58.000Z", + "validTo" : "2029-02-10T03:24:30.000Z" + }, + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "classification" : "product", + "nameAtManufacturer" : "a/dev HV Modul" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-01-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ + { + "parentParts" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-06T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ], + "businessPartner" : "BPNL00000003CNKC", + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98" + } + ] + }, + { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", + "sites" : [ + { + "functionValidUntil" : "2028-04-27T13:34:20.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2017-05-03T09:10:04.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2016-04-28T20:00:55.000Z", + "validTo" : "2027-04-27T00:59:41.000Z" + }, + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "classification" : "product", + "nameAtManufacturer" : "b/test ZB ZELLE" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ + { + "parentParts" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-07T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1" + } + ] + }, + { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", + "sites" : [ + { + "functionValidUntil" : "2027-05-23T09:16:30.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2013-11-17T23:59:54.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2015-05-18T23:10:44.000Z", + "validTo" : "2025-10-23T14:46:01.000Z" + }, + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", + "partTypeInformation" : { + "manufacturerPartId" : "6288246-67", + "classification" : "product", + "nameAtManufacturer" : "b/test OEM A High Voltage Battery" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-08T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "sites" : [ + { + "functionValidUntil" : "2025-03-05T00:33:55.000Z", + "catenaXSiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2019-09-10T14:41:50.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2013-11-24T00:27:33.000Z", + "validTo" : "2025-08-16T09:18:35.000Z" + }, + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "partTypeInformation" : { + "manufacturerPartId" : "7A047C7-01", + "classification" : "product", + "nameAtManufacturer" : "a/dev N Tier A CathodeMaterial" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "sites" : [ + { + "functionValidUntil" : "2031-10-27T21:24:04.000Z", + "catenaXSiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2016-01-29T21:44:37.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2017-07-03T05:23:01.000Z", + "validTo" : "2032-09-25T10:26:27.000Z" + }, + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "classification" : "product", + "nameAtManufacturer" : "b/test Tier A Gearbox" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-09T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-10T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "sites" : [ + { + "functionValidUntil" : "2031-04-16T11:07:09.000Z", + "catenaXSiteId" : "BPNS00000003B3NX", + "function" : "production", + "functionValidFrom" : "2013-12-07T09:33:50.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2013-06-18T03:47:22.000Z", + "validTo" : "2030-12-31T23:33:25.000Z" + }, + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "partTypeInformation" : { + "manufacturerPartId" : "6740244-02", + "classification" : "product", + "nameAtManufacturer" : "a/dev Sub Tier A Sensor" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ + { + "parentParts" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-11T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ], + "businessPartner" : "BPNL00000003CNKC", + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" + } + ] + }, + { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "sites" : [ + { + "functionValidUntil" : "2030-01-29T19:43:54.000Z", + "catenaXSiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2015-11-17T18:35:23.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2015-01-23T16:24:59.000Z", + "validTo" : "2031-05-04T12:01:38.000Z" + }, + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "partTypeInformation" : { + "manufacturerPartId" : "7A987KK-04", + "classification" : "product", + "nameAtManufacturer" : "a/dev N Tier A Plastics" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-01-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ + { + "parentParts" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2022-02-12T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ], + "businessPartner" : "BPNL00000003CNKC", + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" + } + ] + }, + { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "sites" : [ + { + "functionValidUntil" : "2028-09-29T13:56:09.000Z", + "catenaXSiteId" : "BPNS00000003B5MJ", + "function" : "production", + "functionValidFrom" : "2017-01-30T12:55:30.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2016-04-24T08:26:56.000Z", + "validTo" : "2031-12-17T23:55:04.000Z" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "partTypeInformation" : { + "manufacturerPartId" : "8583898-48", + "classification" : "product", + "nameAtManufacturer" : "b/test Tier B ECU1" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-13T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ + { + "parentParts" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-14T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ], + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" + } + ] + }, + { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "sites" : [ + { + "functionValidUntil" : "2032-01-21T11:22:57.000Z", + "catenaXSiteId" : "BPNS00000003AXS3", + "function" : "production", + "functionValidFrom" : "2017-05-27T13:54:13.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2019-08-17T14:14:30.000Z", + "validTo" : "2032-08-30T04:32:28.000Z" + }, + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "partTypeInformation" : { + "manufacturerPartId" : "6775244-06", + "classification" : "product", + "nameAtManufacturer" : "a/dev Sub Tier B Glue" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ + { + "parentParts" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-15T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ], + "businessPartner" : "BPNL00000003CML1", + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" + } + ] + }, + { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "sites" : [ + { + "functionValidUntil" : "2030-05-16T19:21:46.000Z", + "catenaXSiteId" : "BPNS000000815DMY", + "function" : "production", + "functionValidFrom" : "2019-10-17T03:16:09.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2016-04-09T20:41:14.000Z", + "validTo" : "2023-12-09T04:46:33.000Z" + }, + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "partTypeInformation" : { + "manufacturerPartId" : "6004474-20", + "classification" : "product", + "nameAtManufacturer" : "a/dev Vehicle Model B" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ], + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ + { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-16T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ + { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "sites" : [ + { + "functionValidUntil" : "2028-02-14T21:42:45.000Z", + "catenaXSiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2015-07-21T06:33:16.000Z" + } + ] + } + ], + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ + { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2019-11-02T11:14:15.000Z", + "validTo" : "2024-07-17T02:07:07.000Z" + }, + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "partTypeInformation" : { + "manufacturerPartId" : "1987361-42", + "classification" : "product", + "nameAtManufacturer" : "b/test Tire Model A" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-282209222605524629600815", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", + "partTypeInformation" : { + "manufacturerPartId" : "8840837-48", + "customerPartId" : "9560617-12", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + ], + "urn:samm:io.catenax.traction_battery_code:2.0.0#TractionBatteryCode" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382321", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382322", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382323", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382324", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382325", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382326", + "productType" : "module" + } + ], + "productType" : "module" + } + ] + }, + { + "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-917923082133064161014067", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + ], + "urn:samm:io.catenax.traction_battery_code:2.0.0#TractionBatteryCode" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } + ], + "productType" : "cell" + } + ] + }, + { + "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-135342108157438763234738", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", + "partTypeInformation" : { + "manufacturerPartId" : "4683655-00", + "customerPartId" : "4683655-00", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + ], + "urn:samm:io.catenax.traction_battery_code:2.0.0#TractionBatteryCode" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } + ], + "productType" : "cell" + } + ] + }, + { + "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-655858074471261486971940", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", + "partTypeInformation" : { + "manufacturerPartId" : "1142469-27", + "customerPartId" : "1142469-27", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door Key", + "nameAtCustomer" : "Door Key" + } + } + ], + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ + { + "localIdentifiers" : [ + { + "value" : "92879626SFC", + "key" : "jisNumber" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", + "partTypeInformation" : { + "manufacturerPartId" : "1417058-05", + "customerPartId" : "PRT-12345", + "classification" : "product", + "nameAtManufacturer" : "b/test Door Key", + "nameAtCustomer" : "Door Key" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-200738629800530338038454", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", + "partTypeInformation" : { + "manufacturerPartId" : "1261027-41", + "customerPartId" : "1261027-41", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key", + "nameAtCustomer" : "Door Key" + } + } + ], + "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ + { + "localIdentifiers" : [ + { + "value" : "85851549CBX", + "key" : "jisNumber" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", + "partTypeInformation" : { + "manufacturerPartId" : "5464168-83", + "customerPartId" : "PRT-12345", + "classification" : "product", + "nameAtManufacturer" : "a/dev Door Key", + "nameAtCustomer" : "Door Key" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2023-02-03T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "NO-570196089623842018037372", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", + "childItems" : [ + { + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", + "quantity" : { + "value" : 2.5, + "unit" : "unit:litre" + }, + "hasAlternatives" : true, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CML1", + "key" : "manufacturerId" + }, + { + "value" : "BID12345678", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "classification" : "product", + "nameAtManufacturer" : "Sealant" + } + } + ] + }, + { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ + { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", + "customers" : [ + "BPNL00000003CNKC" + ], + "businessPartner" : "BPNL00000003CNKC", + "parentItems" : [], + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "NO-570196089623842018037372", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + ], + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ + { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", + "childItems" : [ + { + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fcb5f", + "quantity" : { + "value" : 2.5, + "unit" : "unit:litre" + }, + "hasAlternatives" : true, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + ] + }, + { + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fcb5f", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ + { + "localIdentifiers" : [ + { + "value" : "BPNL00000003CNKC", + "key" : "manufacturerId" + }, + { + "value" : "BID12345678", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fcb5f", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-5656-A", + "classification" : "product", + "nameAtManufacturer" : "Sealant" + } + } + ] + } + ] +} diff --git a/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14.json b/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14.json index 2c8c028b95..0d8466e911 100644 --- a/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14.json +++ b/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14.json @@ -40,20 +40,20 @@ "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { "catenaXId" : "urn:uuid:0fed587c-7ab4-4597-9841-1718e9693003", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "PlainObject" : [ { - "BPN_OEM_C" : "BPNL00000003CML1", + "BPN_OEM_C" : "BPNL000000000UKM", "BPN_OEM_A" : "BPNL00000003CSGV", "BPN_OEM_B" : "BPNL00000003AZQP", - "BPN_OEM_D" : "BPNL00000003CNKC", + "BPN_OEM_D" : "BPNL000000000DWF", "CREATION_DATE" : "2022-09-26T12:43:51.079Z" } ] }, { "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", @@ -66,7 +66,7 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -76,7 +76,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -109,7 +109,7 @@ }, { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", @@ -132,7 +132,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -164,7 +164,7 @@ { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -175,7 +175,7 @@ "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", "createdOn" : "2023-05-29T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -221,7 +221,7 @@ { "catenaXId" : "urn:uuid:1d2d8480-90a5-4a17-9ecb-2ff039d35fec", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -233,7 +233,7 @@ "createdOn" : "2023-06-18T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL00000003CNKC" + "businessPartner" : "BPNL000000000DWF" } ] } @@ -241,7 +241,7 @@ }, { "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", @@ -254,7 +254,7 @@ "createdOn" : "2021-01-15T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -264,7 +264,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -297,7 +297,7 @@ }, { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", @@ -310,7 +310,7 @@ "createdOn" : "2020-05-02T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "hasAlternatives" : false } ] @@ -320,7 +320,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -352,7 +352,7 @@ { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -363,7 +363,7 @@ "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", "createdOn" : "2023-07-15T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -372,12 +372,12 @@ }, { "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -409,7 +409,7 @@ { "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -420,7 +420,7 @@ "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", "createdOn" : "2023-12-05T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "isOnlyPotentialParent" : false } ] @@ -429,7 +429,7 @@ }, { "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", @@ -442,7 +442,7 @@ "createdOn" : "2022-11-22T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -452,7 +452,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -485,7 +485,7 @@ }, { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", @@ -498,7 +498,7 @@ "createdOn" : "2018-09-17T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "hasAlternatives" : false } ] @@ -508,7 +508,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -540,7 +540,7 @@ { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -551,7 +551,7 @@ "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", "createdOn" : "2023-02-16T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -560,12 +560,12 @@ }, { "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -597,7 +597,7 @@ { "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -608,7 +608,7 @@ "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", "createdOn" : "2023-04-13T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "isOnlyPotentialParent" : false } ] @@ -630,7 +630,7 @@ "createdOn" : "2021-10-24T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -673,7 +673,7 @@ }, { "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", @@ -686,7 +686,7 @@ "createdOn" : "2022-06-28T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "hasAlternatives" : false } ] @@ -696,7 +696,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -748,12 +748,12 @@ }, { "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -785,7 +785,7 @@ { "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -797,7 +797,7 @@ "createdOn" : "2023-08-21T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL00000003CNKC" + "businessPartner" : "BPNL000000000DWF" } ] } @@ -834,7 +834,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284b170", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -846,7 +846,7 @@ "createdOn" : "2023-06-14T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL00000003CML1" + "businessPartner" : "BPNL000000000UKM" } ] } @@ -854,12 +854,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa01", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -882,12 +882,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -919,7 +919,7 @@ "createdOn" : "2016-01-20T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -928,12 +928,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -957,7 +957,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -968,7 +968,7 @@ "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", "createdOn" : "2023-08-08T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -977,12 +977,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -1020,7 +1020,7 @@ "createdOn" : "2019-08-15T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "hasAlternatives" : false } ] @@ -1029,12 +1029,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -1064,7 +1064,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -1076,7 +1076,7 @@ "createdOn" : "2022-07-03T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL00000003CNKC" + "businessPartner" : "BPNL000000000DWF" } ] } @@ -1084,12 +1084,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb03", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -1118,7 +1118,7 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "localIdentifiers" : [ @@ -1172,7 +1172,7 @@ "createdOn" : "2022-08-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", - "businessPartner" : "BPNL00000003CNKC" + "businessPartner" : "BPNL000000000DWF" } ] } @@ -1180,7 +1180,7 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "localIdentifiers" : [ @@ -1234,7 +1234,7 @@ "createdOn" : "2022-09-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", - "businessPartner" : "BPNL00000003CML1" + "businessPartner" : "BPNL000000000UKM" } ] } @@ -1242,12 +1242,12 @@ }, { "catenaXId" : "urn:uuid:580d3adf-1981-44a0-a214-13d6ceed6841", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -1272,12 +1272,12 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e43842", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -1302,7 +1302,7 @@ }, { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", @@ -1354,7 +1354,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-10-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1378,14 +1378,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" } ] }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", @@ -1447,7 +1447,7 @@ }, { "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", @@ -1499,7 +1499,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "createdOn" : "2022-01-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1523,14 +1523,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98" } ] }, { "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", @@ -1591,7 +1591,7 @@ }, { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", @@ -1643,7 +1643,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-08T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1653,7 +1653,7 @@ }, { "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", @@ -1694,7 +1694,7 @@ }, { "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", @@ -1746,7 +1746,7 @@ "value" : 1, "unit" : "unit:litre" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-09T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, @@ -1760,7 +1760,7 @@ "value" : 1, "unit" : "unit:litre" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-10T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1770,7 +1770,7 @@ }, { "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", @@ -1825,14 +1825,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" } ] }, { "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", @@ -1884,7 +1884,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "createdOn" : "2022-01-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1908,14 +1908,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" } ] }, { "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", @@ -1967,7 +1967,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-13T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1987,7 +1987,7 @@ "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-14T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1998,7 +1998,7 @@ }, { "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", @@ -2053,14 +2053,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" } ] }, { "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", @@ -2112,7 +2112,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "createdOn" : "2022-02-16T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2122,7 +2122,7 @@ }, { "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", @@ -2163,12 +2163,12 @@ }, { "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2235,12 +2235,12 @@ }, { "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -2283,12 +2283,12 @@ }, { "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2331,12 +2331,12 @@ }, { "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -2389,12 +2389,12 @@ }, { "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2447,12 +2447,12 @@ }, { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -2463,7 +2463,7 @@ }, "createdOn" : "2023-02-03T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -2473,7 +2473,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2512,7 +2512,7 @@ "unit" : "unit:litre" }, "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2522,12 +2522,12 @@ }, { "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2550,14 +2550,14 @@ }, { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "parentItems" : [], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" @@ -2567,7 +2567,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -2606,7 +2606,7 @@ "unit" : "unit:litre" }, "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2616,12 +2616,12 @@ }, { "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fcb5f", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { diff --git a/tx-backend/testdata/import-test-data-0DWF_v0.0.14.json b/tx-backend/testdata/import-test-data-0DWF_v0.0.14.json new file mode 100644 index 0000000000..55a79ce60f --- /dev/null +++ b/tx-backend/testdata/import-test-data-0DWF_v0.0.14.json @@ -0,0 +1,1106 @@ +{ + "assets" : [ + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-313869652971440618042264", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "b/test Door front-left" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2023-02-20T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:1d2d8480-90a5-4a17-9ecb-2ff039d35fec", + "businessPartner" : "BPNL00000003CSGV" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "createdOn" : "2023-05-29T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-989134870198932317923938", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "partTypeInformation" : { + "manufacturerPartId" : "3880383-57", + "customerPartId" : "3880383-57", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2020-05-02T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", + "businessPartner" : "BPNL00000003CML1" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", + "createdOn" : "2023-07-15T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-004314332935115065980115", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "partTypeInformation" : { + "manufacturerPartId" : "9069675-60", + "customerPartId" : "9069675-60", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2018-09-17T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", + "businessPartner" : "BPNL00000003CML1" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", + "createdOn" : "2023-02-16T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-477013846751358222215326", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "partTypeInformation" : { + "manufacturerPartId" : "9879317-51", + "customerPartId" : "9879317-51", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2022-06-28T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", + "businessPartner" : "BPNL00000003CML1" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "customers" : [ + "BPNL00000003CSGV" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:4d33bfa6-0f1f-43a5-ad63-c3fe07a2d076", + "createdOn" : "2023-03-03T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CSGV", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.batch:3.0.0#Batch", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", + "partTypeInformation" : { + "manufacturerPartId" : "5894914-94", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", + "customers" : [ + "BPNL00000003CML1" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", + "createdOn" : "2023-08-08T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CML1", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.batch:3.0.0#Batch", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", + "partTypeInformation" : { + "manufacturerPartId" : "6245773-32", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2019-08-15T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", + "businessPartner" : "BPNL00000003CML1" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb03" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.batch:3.0.0#Batch", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb03", + "partTypeInformation" : { + "manufacturerPartId" : "9770171-23", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door Key" + } + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2019-04-04T03:19:03.000Z", + "validTo" : "2024-12-29T10:25:12.000Z" + }, + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "partTypeInformation" : { + "manufacturerPartId" : "7805659-25", + "classification" : "product", + "nameAtManufacturer" : "b/test Vehicle Model B" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "createdOn" : "2022-09-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "businessPartner" : "BPNL00000003CML1" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "sites" : [ + { + "functionValidUntil" : "2025-02-08T04:30:48.000Z", + "function" : "production", + "functionValidFrom" : "2019-08-21T02:10:36.000Z", + "catenaXSiteId" : "BPNS000004711DMY" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:580d3adf-1981-44a0-a214-13d6ceed6841" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "12345678ABC", + "key" : "jisNumber" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:580d3adf-1981-44a0-a214-13d6ceed6841", + "partTypeInformation" : { + "manufacturerPartId" : "3578115-43", + "customerPartId" : "PRT-12345", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "b/test side element A" + } + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2017-01-03T07:45:04.000Z", + "validTo" : "2029-11-15T11:57:45.000Z" + }, + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "partTypeInformation" : { + "manufacturerPartId" : "2586427-48", + "classification" : "product", + "nameAtManufacturer" : "b/test Vehicle Model A" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-12-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "sites" : [ + { + "functionValidUntil" : "2025-04-04T04:14:11.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2018-03-24T13:38:32.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2016-04-28T20:00:55.000Z", + "validTo" : "2027-04-27T00:59:41.000Z" + }, + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "classification" : "product", + "nameAtManufacturer" : "b/test ZB ZELLE" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", + "sites" : [ + { + "functionValidUntil" : "2028-04-27T13:34:20.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2017-05-03T09:10:04.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2015-05-18T23:10:44.000Z", + "validTo" : "2025-10-23T14:46:01.000Z" + }, + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", + "partTypeInformation" : { + "manufacturerPartId" : "6288246-67", + "classification" : "product", + "nameAtManufacturer" : "b/test OEM A High Voltage Battery" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-08T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", + "sites" : [ + { + "functionValidUntil" : "2027-05-23T09:16:30.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2013-11-17T23:59:54.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2017-07-03T05:23:01.000Z", + "validTo" : "2032-09-25T10:26:27.000Z" + }, + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "classification" : "product", + "nameAtManufacturer" : "b/test Tier A Gearbox" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-09T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-10T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "sites" : [ + { + "functionValidUntil" : "2031-10-27T21:24:04.000Z", + "catenaXSiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2016-01-29T21:44:37.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2016-04-24T08:26:56.000Z", + "validTo" : "2031-12-17T23:55:04.000Z" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "partTypeInformation" : { + "manufacturerPartId" : "8583898-48", + "classification" : "product", + "nameAtManufacturer" : "b/test Tier B ECU1" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-13T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "sites" : [ + { + "functionValidUntil" : "2028-09-29T13:56:09.000Z", + "catenaXSiteId" : "BPNS00000003B5MJ", + "function" : "production", + "functionValidFrom" : "2017-01-30T12:55:30.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2019-11-02T11:14:15.000Z", + "validTo" : "2024-07-17T02:07:07.000Z" + }, + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "partTypeInformation" : { + "manufacturerPartId" : "1987361-42", + "classification" : "product", + "nameAtManufacturer" : "b/test Tire Model A" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "sites" : [ + { + "functionValidUntil" : "2028-02-14T21:42:45.000Z", + "catenaXSiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2015-07-21T06:33:16.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-917923082133064161014067", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", + "partTypeInformation" : { + "manufacturerPartId" : "9879317-51", + "customerPartId" : "9879317-51", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.traction_battery_code:2.0.0#TractionBatteryCode", + "payload" : { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } + ], + "productType" : "cell" + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-655858074471261486971940", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", + "partTypeInformation" : { + "manufacturerPartId" : "1142469-27", + "customerPartId" : "1142469-27", + "classification" : "component", + "nameAtManufacturer" : "b/test Door Key", + "nameAtCustomer" : "Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "92879626SFC", + "key" : "jisNumber" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", + "partTypeInformation" : { + "manufacturerPartId" : "1417058-05", + "customerPartId" : "PRT-12345", + "classification" : "product", + "nameAtManufacturer" : "b/test Door Key", + "nameAtCustomer" : "Door Key" + } + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000DWF", + "key" : "manufacturerId" + }, + { + "value" : "NO-570196089623842018037372", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", + "childItems" : [ + { + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fcb5f", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "businessPartner" : "BPNL000000000DWF", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", + "customers" : [ + "BPNL000000000DWF" + ], + "parentItems" : [ + { + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2023-02-03T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL000000000DWF", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + } + ] +} diff --git a/tx-backend/testdata/import-test-data-0UKM_v0.0.14.json b/tx-backend/testdata/import-test-data-0UKM_v0.0.14.json new file mode 100644 index 0000000000..023b5c8bf2 --- /dev/null +++ b/tx-backend/testdata/import-test-data-0UKM_v0.0.14.json @@ -0,0 +1,1340 @@ +{ + "assets" : [ + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "OMAOYGBDTSRCMYSCX", + "key" : "partInstanceId" + }, + { + "value" : "OMAOYGBDTSRCMYSCX", + "key" : "van" + } + ], + "manufacturingInformation" : { + "date" : "2018-09-28T04:15:57.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "partTypeInformation" : { + "manufacturerPartId" : "3500076-05", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Vehicle Hybrid" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "OMAYSKEITUGNVHKKX", + "key" : "partInstanceId" + }, + { + "value" : "OMAYSKEITUGNVHKKX", + "key" : "van" + } + ], + "manufacturingInformation" : { + "date" : "2015-03-07T19:38:12.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", + "partTypeInformation" : { + "manufacturerPartId" : "4922009-56", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Vehicle Hybrid" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2021-01-15T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-493575190274381019348907", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", + "partTypeInformation" : { + "manufacturerPartId" : "6683834-82", + "customerPartId" : "6683834-82", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", + "createdOn" : "2023-12-05T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CNKC", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "OMAZRXWWMSPTQUEKI", + "key" : "partInstanceId" + }, + { + "value" : "OMAZRXWWMSPTQUEKI", + "key" : "van" + } + ], + "manufacturingInformation" : { + "date" : "2015-07-04T14:30:31.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", + "partTypeInformation" : { + "manufacturerPartId" : "5519583-63", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Vehicle Hybrid" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2022-11-22T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-246880451848384868750731", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", + "partTypeInformation" : { + "manufacturerPartId" : "8770123-80", + "customerPartId" : "8770123-80", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key", + "nameAtCustomer" : "Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", + "createdOn" : "2023-04-13T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL00000003CNKC", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-613963493493659233961306", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", + "partTypeInformation" : { + "manufacturerPartId" : "5756987-94", + "customerPartId" : "5756987-94", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key", + "nameAtCustomer" : "Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", + "createdOn" : "2023-08-21T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "isOnlyPotentialParent" : false, + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa01" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.batch:3.0.0#Batch", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa01", + "partTypeInformation" : { + "manufacturerPartId" : "9858559-85", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key" + } + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.batch:3.0.0#Batch", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", + "partTypeInformation" : { + "manufacturerPartId" : "9623673-66", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", + "childItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "createdOn" : "2016-01-20T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.batch:3.0.0#Batch", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-341449848714937445621543", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", + "partTypeInformation" : { + "manufacturerPartId" : "4902203-92", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "a/dev Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", + "customers" : [ + "BPNL00000003CNKC" + ], + "parentItems" : [ + { + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", + "createdOn" : "2022-07-03T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "isOnlyPotentialParent" : false, + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2019-04-04T03:19:03.000Z", + "validTo" : "2024-12-29T10:25:12.000Z" + }, + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "partTypeInformation" : { + "manufacturerPartId" : "9649571-63", + "classification" : "product", + "nameAtManufacturer" : "a/dev Vehicle Model A" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2022-08-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", + "businessPartner" : "BPNL00000003CNKC" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", + "sites" : [ + { + "functionValidUntil" : "2025-02-08T04:30:48.000Z", + "function" : "production", + "functionValidFrom" : "2019-08-21T02:10:36.000Z", + "catenaXSiteId" : "BPNS000004711DMY" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e43842" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "12345678ABC", + "key" : "jisNumber" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e43842", + "partTypeInformation" : { + "manufacturerPartId" : "8397292-13", + "customerPartId" : "PRT-12345", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Mirror left", + "nameAtCustomer" : "a/dev side element A" + } + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2015-05-18T23:10:44.000Z", + "validTo" : "2025-10-23T14:46:01.000Z" + }, + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "classification" : "product", + "nameAtManufacturer" : "a/dev OEM A High Voltage Battery" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL000000000UKM", + "createdOn" : "2022-10-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "sites" : [ + { + "functionValidUntil" : "2027-05-23T09:16:30.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2013-11-17T23:59:54.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2018-01-25T08:42:58.000Z", + "validTo" : "2029-02-10T03:24:30.000Z" + }, + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "partTypeInformation" : { + "manufacturerPartId" : "7805659-25", + "classification" : "product", + "nameAtManufacturer" : "b/test Vehicle Model B" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-01-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", + "sites" : [ + { + "functionValidUntil" : "2031-11-21T03:24:27.000Z", + "catenaXSiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2020-06-07T07:30:47.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2013-11-24T00:27:33.000Z", + "validTo" : "2025-08-16T09:18:35.000Z" + }, + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "partTypeInformation" : { + "manufacturerPartId" : "7A047C7-01", + "classification" : "product", + "nameAtManufacturer" : "a/dev N Tier A CathodeMaterial" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "sites" : [ + { + "functionValidUntil" : "2025-03-05T00:33:55.000Z", + "catenaXSiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2019-09-10T14:41:50.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2013-06-18T03:47:22.000Z", + "validTo" : "2030-12-31T23:33:25.000Z" + }, + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "partTypeInformation" : { + "manufacturerPartId" : "6740244-02", + "classification" : "product", + "nameAtManufacturer" : "a/dev Sub Tier A Sensor" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "sites" : [ + { + "functionValidUntil" : "2031-04-16T11:07:09.000Z", + "catenaXSiteId" : "BPNS00000003B3NX", + "function" : "production", + "functionValidFrom" : "2013-12-07T09:33:50.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2015-01-23T16:24:59.000Z", + "validTo" : "2031-05-04T12:01:38.000Z" + }, + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "partTypeInformation" : { + "manufacturerPartId" : "7A987KK-04", + "classification" : "product", + "nameAtManufacturer" : "a/dev N Tier A Plastics" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-16T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "sites" : [ + { + "functionValidUntil" : "2030-01-29T19:43:54.000Z", + "catenaXSiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2015-11-17T18:35:23.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2019-08-17T14:14:30.000Z", + "validTo" : "2032-08-30T04:32:28.000Z" + }, + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "partTypeInformation" : { + "manufacturerPartId" : "6775244-06", + "classification" : "product", + "nameAtManufacturer" : "a/dev Sub Tier B Glue" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "sites" : [ + { + "functionValidUntil" : "2032-01-21T11:22:57.000Z", + "catenaXSiteId" : "BPNS00000003AXS3", + "function" : "production", + "functionValidFrom" : "2017-05-27T13:54:13.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "payload" : { + "localIdentifiers" : [ + ], + "validityPeriod" : { + "validFrom" : "2016-04-09T20:41:14.000Z", + "validTo" : "2023-12-09T04:46:33.000Z" + }, + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "partTypeInformation" : { + "manufacturerPartId" : "6004474-20", + "classification" : "product", + "nameAtManufacturer" : "a/dev Vehicle Model B" + }, + "partSitesInformationAsPlanned" : [ + { + "catenaXsiteId" : "BPNS123456789A", + "function" : "production", + "functionValidFrom" : "2024-04-25T10:00:00Z", + "functionValidUntil" : "2024-04-30T10:00:00Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "childItems" : [ + { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "value" : 1, + "unit" : "unit:litre" + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-16T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned", + "payload" : { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "sites" : [ + { + "functionValidUntil" : "2030-05-16T19:21:46.000Z", + "catenaXSiteId" : "BPNS000000815DMY", + "function" : "production", + "functionValidFrom" : "2019-10-17T03:16:09.000Z" + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-282209222605524629600815", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", + "partTypeInformation" : { + "manufacturerPartId" : "8840837-48", + "customerPartId" : "9560617-12", + "classification" : "component", + "nameAtManufacturer" : "a/dev HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.traction_battery_code:2.0.0#TractionBatteryCode", + "payload" : { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382321", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382322", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382323", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382324", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382325", + "productType" : "module" + }, + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382326", + "productType" : "module" + } + ], + "productType" : "module" + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-135342108157438763234738", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", + "partTypeInformation" : { + "manufacturerPartId" : "9879317-51", + "customerPartId" : "9879317-51", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "b/test Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.traction_battery_code:2.0.0#TractionBatteryCode", + "payload" : { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "subcomponents" : [ + { + "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", + "productType" : "cell" + } + ], + "productType" : "cell" + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-200738629800530338038454", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", + "partTypeInformation" : { + "manufacturerPartId" : "1261027-41", + "customerPartId" : "1261027-41", + "classification" : "component", + "nameAtManufacturer" : "a/dev Door Key", + "nameAtCustomer" : "Door Key" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "85851549CBX", + "key" : "jisNumber" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", + "partTypeInformation" : { + "manufacturerPartId" : "5464168-83", + "customerPartId" : "PRT-12345", + "classification" : "product", + "nameAtManufacturer" : "a/dev Door Key", + "nameAtCustomer" : "Door Key" + } + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "NO-570196089623842018037372", + "key" : "partInstanceId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", + "childItems" : [ + { + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "hasAlternatives" : true, + "businessPartner" : "BPNL000000000UKM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "aspectType" : "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt", + "payload" : { + "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", + "customers" : [ + "BPNL000000000UKM" + ], + "parentItems" : [ + { + "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", + "quantity" : { + "value" : 1, + "unit" : "unit:piece" + }, + "createdOn" : "2023-02-03T14:48:54.709Z", + "lastModifiedOn" : "2023-02-03T14:48:54.709Z", + "businessPartner" : "BPNL000000000UKM", + "isOnlyPotentialParent" : false + } + ] + } + } + ] + }, + { + "assetMetaInfo" : { + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f" + }, + "submodels" : [ + { + "aspectType" : "urn:samm:io.catenax.batch:3.0.0#Batch", + "payload" : { + "localIdentifiers" : [ + { + "value" : "BPNL000000000UKM", + "key" : "manufacturerId" + }, + { + "value" : "BID12345678", + "key" : "batchId" + } + ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54.000Z", + "country" : "HUN" + }, + "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", + "partTypeInformation" : { + "manufacturerPartId" : "123-0.740-3434-A", + "partClassification" : [ + { + "classificationStandard" : "classificationStandard", + "classificationID" : "classificationID", + "classificationDescription" : "classificationDescription" + } + ], + "nameAtManufacturer" : "Sealant" + } + } + } + ] + } + ] +} From dbccc284fe73fb7210e29a159384d86a08b32517 Mon Sep 17 00:00:00 2001 From: mk Date: Mon, 22 Jul 2024 14:15:42 +0200 Subject: [PATCH 11/22] fix(CHANGELOG ):[#1070] create CHANGELOG entry --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3da61bed53..f3495393f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,8 @@ _**For better traceability add the corresponding GitHub issue number in each cha - #1190 update notification contracts on policy updates ### Changed -- #1070 Correct semantic model in dev/READEME.md +- #1070 Correct semantic model in dev/README.md +- #1070 Update documentation artefacts according to TRG 1 - Documentation - #1070 Convert png to svg according to TRG 1.04 - Diagrams as code / Editable static files - #1173 Update IRS-Helm from 7.1.4 to 7.2.0 - updated Compatibility Matrix - #1082 fix duplicate key errors when synchronizing assets with IRS From 56bb6c506cde9a91740219cf9e8659e9c369394d Mon Sep 17 00:00:00 2001 From: ds-lcapellino Date: Mon, 22 Jul 2024 14:21:17 +0200 Subject: [PATCH 12/22] chore: xxx update irs version --- CHANGELOG.md | 1 + COMPATIBILITY_MATRIX.md | 2 +- charts/traceability-foss/Chart.yaml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e85093a40a..541ae4c83f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## [UNRELEASED - DD.MM.YYYY] ### Changed - #1070 Convert png to svg according to TRG 1.04 - Diagrams as code / Editable static files +- #xxx update IRS chart version from 7.3.1 to 7.4.0 ## [13.0.0 - 19.07.2024] diff --git a/COMPATIBILITY_MATRIX.md b/COMPATIBILITY_MATRIX.md index c83ae53da3..83a24c041b 100644 --- a/COMPATIBILITY_MATRIX.md +++ b/COMPATIBILITY_MATRIX.md @@ -11,7 +11,7 @@ | Dependency | Name of Service | Version | Helm | Comments | |------------------|------------------------------|----------------------|----------|-----------------------------------------------------| | EDC | edc-postgresql | 15.4.0-debian-11-r45 | 12.12.10 | Enterprise Data Connector for PostgreSQL | -| IRS | item-relationship-service | 5.3.0 | 7.3.1 | Helm charts for Item Relationship Service | +| IRS | item-relationship-service | 5.4.0 | 7.4.0 | Helm charts for Item Relationship Service | | EDC | tractusx-connector | 0.7.3 | 0.7.3 | Connector for Data Transfer and Registration | | Discovery Finder | discovery service | 0.2.5 | - | Service for discovering and registering artifacts | | Portal | portal | 1.8.0 | - | Web portal for interacting with Trace-X | diff --git a/charts/traceability-foss/Chart.yaml b/charts/traceability-foss/Chart.yaml index 26f7a9079c..a07e3c9d91 100644 --- a/charts/traceability-foss/Chart.yaml +++ b/charts/traceability-foss/Chart.yaml @@ -42,7 +42,7 @@ dependencies: condition: pgadmin4.enabled - name: item-relationship-service repository: https://eclipse-tractusx.github.io/item-relationship-service - version: 7.3.1 + version: 7.4.0 condition: item-relationship-service.enabled - name: tractusx-connector repository: https://eclipse-tractusx.github.io/tractusx-edc From 4dc9aabc86776b830eef601e5f081e1d20f16171 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Mon, 22 Jul 2024 15:45:25 +0200 Subject: [PATCH 13/22] chore(update): xxx - adapt testdata. --- ...CX_Testdata_MessagingTest_v0.0.14-ev.json} | 290 +++++++++--------- .../CX_Testdata_MessagingTest_v0.0.14.json | 290 +++++++++--------- 2 files changed, 290 insertions(+), 290 deletions(-) rename tx-backend/testdata/{CX_Testdata_MessagingTest_v0.0.14-consortia.json => CX_Testdata_MessagingTest_v0.0.14-ev.json} (93%) diff --git a/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-consortia.json b/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-ev.json similarity index 93% rename from tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-consortia.json rename to tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-ev.json index 69f0cfa325..0d8466e911 100644 --- a/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-consortia.json +++ b/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14-ev.json @@ -1,34 +1,34 @@ { - "policies" : { - "traceability-core" : { - "@context" : { - "odrl" : "http://www.w3.org/ns/odrl/2/" + "policies": { + "traceability-core": { + "@context": { + "odrl": "http://www.w3.org/ns/odrl/2/" }, - "@type" : "PolicyDefinitionRequestDto", - "@id" : "traceability-core", - "policy" : { - "@type" : "odrl:Set", - "odrl:permission" : [ + "@type": "PolicyDefinitionRequestDto", + "@id": "traceability-core", + "policy": { + "@type": "odrl:Set", + "odrl:permission": [ { "odrl:action" : "use", - "odrl:constraint" : { - "@type" : "AtomicConstraint", - "odrl:and" : [ + "odrl:constraint": { + "@type": "AtomicConstraint", + "odrl:and": [ { - "@type" : "Constraint", - "odrl:leftOperand" : "https://w3id.org/catenax/policy/FrameworkAgreement", - "odrl:operator" : { - "@id" : "odrl:eq" + "@type": "Constraint", + "odrl:leftOperand": "https://w3id.org/catenax/policy/FrameworkAgreement", + "odrl:operator": { + "@id": "odrl:eq" }, - "odrl:rightOperand" : "traceability:1.0" + "odrl:rightOperand": "traceability:1.0" }, { - "@type" : "Constraint", - "odrl:leftOperand" : "https://w3id.org/catenax/policy/UsagePurpose", - "odrl:operator" : { - "@id" : "odrl:eq" + "@type": "Constraint", + "odrl:leftOperand": "https://w3id.org/catenax/policy/UsagePurpose", + "odrl:operator": { + "@id": "odrl:eq" }, - "odrl:rightOperand" : "cx.core.industrycore:1" + "odrl:rightOperand": "cx.core.industrycore:1" } ] } @@ -40,20 +40,20 @@ "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { "catenaXId" : "urn:uuid:0fed587c-7ab4-4597-9841-1718e9693003", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "PlainObject" : [ { - "BPN_OEM_C" : "BPNL00000003CML1", + "BPN_OEM_C" : "BPNL000000000UKM", "BPN_OEM_A" : "BPNL00000003CSGV", "BPN_OEM_B" : "BPNL00000003AZQP", - "BPN_OEM_D" : "BPNL00000003CNKC", + "BPN_OEM_D" : "BPNL000000000DWF", "CREATION_DATE" : "2022-09-26T12:43:51.079Z" } ] }, { "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", @@ -66,7 +66,7 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -76,7 +76,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -109,7 +109,7 @@ }, { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", @@ -132,7 +132,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -164,7 +164,7 @@ { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -175,7 +175,7 @@ "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", "createdOn" : "2023-05-29T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -221,7 +221,7 @@ { "catenaXId" : "urn:uuid:1d2d8480-90a5-4a17-9ecb-2ff039d35fec", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -233,7 +233,7 @@ "createdOn" : "2023-06-18T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL00000003CNKC" + "businessPartner" : "BPNL000000000DWF" } ] } @@ -241,7 +241,7 @@ }, { "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", @@ -254,7 +254,7 @@ "createdOn" : "2021-01-15T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -264,7 +264,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -297,7 +297,7 @@ }, { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", @@ -310,7 +310,7 @@ "createdOn" : "2020-05-02T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "hasAlternatives" : false } ] @@ -320,7 +320,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -352,7 +352,7 @@ { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -363,7 +363,7 @@ "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", "createdOn" : "2023-07-15T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -372,12 +372,12 @@ }, { "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -409,7 +409,7 @@ { "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -420,7 +420,7 @@ "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", "createdOn" : "2023-12-05T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "isOnlyPotentialParent" : false } ] @@ -429,7 +429,7 @@ }, { "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", @@ -442,7 +442,7 @@ "createdOn" : "2022-11-22T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -452,7 +452,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -485,7 +485,7 @@ }, { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", @@ -498,7 +498,7 @@ "createdOn" : "2018-09-17T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "hasAlternatives" : false } ] @@ -508,7 +508,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -540,7 +540,7 @@ { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -551,7 +551,7 @@ "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", "createdOn" : "2023-02-16T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -560,12 +560,12 @@ }, { "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -597,7 +597,7 @@ { "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -608,7 +608,7 @@ "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", "createdOn" : "2023-04-13T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "isOnlyPotentialParent" : false } ] @@ -630,7 +630,7 @@ "createdOn" : "2021-10-24T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -673,7 +673,7 @@ }, { "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", @@ -686,7 +686,7 @@ "createdOn" : "2022-06-28T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "hasAlternatives" : false } ] @@ -696,7 +696,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -748,12 +748,12 @@ }, { "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -785,7 +785,7 @@ { "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -797,7 +797,7 @@ "createdOn" : "2023-08-21T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL00000003CNKC" + "businessPartner" : "BPNL000000000DWF" } ] } @@ -834,7 +834,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284b170", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -846,7 +846,7 @@ "createdOn" : "2023-06-14T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL00000003CML1" + "businessPartner" : "BPNL000000000UKM" } ] } @@ -854,12 +854,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa01", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -882,12 +882,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -919,7 +919,7 @@ "createdOn" : "2016-01-20T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "hasAlternatives" : false } ] @@ -928,12 +928,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -957,7 +957,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -968,7 +968,7 @@ "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", "createdOn" : "2023-08-08T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -977,12 +977,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -1020,7 +1020,7 @@ "createdOn" : "2019-08-15T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "hasAlternatives" : false } ] @@ -1029,12 +1029,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -1064,7 +1064,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], "parentItems" : [ { @@ -1076,7 +1076,7 @@ "createdOn" : "2022-07-03T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL00000003CNKC" + "businessPartner" : "BPNL000000000DWF" } ] } @@ -1084,12 +1084,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb03", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -1118,7 +1118,7 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "localIdentifiers" : [ @@ -1172,7 +1172,7 @@ "createdOn" : "2022-08-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", - "businessPartner" : "BPNL00000003CNKC" + "businessPartner" : "BPNL000000000DWF" } ] } @@ -1180,7 +1180,7 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "localIdentifiers" : [ @@ -1234,7 +1234,7 @@ "createdOn" : "2022-09-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", - "businessPartner" : "BPNL00000003CML1" + "businessPartner" : "BPNL000000000UKM" } ] } @@ -1242,12 +1242,12 @@ }, { "catenaXId" : "urn:uuid:580d3adf-1981-44a0-a214-13d6ceed6841", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -1272,12 +1272,12 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e43842", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -1302,7 +1302,7 @@ }, { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", @@ -1354,7 +1354,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-10-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1378,14 +1378,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" } ] }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", @@ -1447,7 +1447,7 @@ }, { "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", @@ -1499,7 +1499,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "createdOn" : "2022-01-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1523,14 +1523,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98" } ] }, { "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", @@ -1591,7 +1591,7 @@ }, { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", @@ -1643,7 +1643,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-08T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1653,7 +1653,7 @@ }, { "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", @@ -1694,7 +1694,7 @@ }, { "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", @@ -1746,7 +1746,7 @@ "value" : 1, "unit" : "unit:litre" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-09T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, @@ -1760,7 +1760,7 @@ "value" : 1, "unit" : "unit:litre" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-10T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1770,7 +1770,7 @@ }, { "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", @@ -1825,14 +1825,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" } ] }, { "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", @@ -1884,7 +1884,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "createdOn" : "2022-01-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1908,14 +1908,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" } ] }, { "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", @@ -1967,7 +1967,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-13T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1987,7 +1987,7 @@ "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-14T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1998,7 +1998,7 @@ }, { "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", @@ -2053,14 +2053,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" } ] }, { "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", @@ -2112,7 +2112,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "createdOn" : "2022-02-16T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2122,7 +2122,7 @@ }, { "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", @@ -2163,12 +2163,12 @@ }, { "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2235,12 +2235,12 @@ }, { "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -2283,12 +2283,12 @@ }, { "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2331,12 +2331,12 @@ }, { "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -2389,12 +2389,12 @@ }, { "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2447,12 +2447,12 @@ }, { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", "customers" : [ - "BPNL00000003CML1" + "BPNL000000000UKM" ], "parentItems" : [ { @@ -2463,7 +2463,7 @@ }, "createdOn" : "2023-02-03T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "isOnlyPotentialParent" : false } ] @@ -2473,7 +2473,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2512,7 +2512,7 @@ "unit" : "unit:litre" }, "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL000000000UKM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2522,12 +2522,12 @@ }, { "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL000000000UKM", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CML1", + "value" : "BPNL000000000UKM", "key" : "manufacturerId" }, { @@ -2550,14 +2550,14 @@ }, { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", "customers" : [ - "BPNL00000003CNKC" + "BPNL000000000DWF" ], - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "parentItems" : [], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" @@ -2567,7 +2567,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { @@ -2606,7 +2606,7 @@ "unit" : "unit:litre" }, "hasAlternatives" : true, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL000000000DWF", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2616,12 +2616,12 @@ }, { "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fcb5f", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL000000000DWF", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CNKC", + "value" : "BPNL000000000DWF", "key" : "manufacturerId" }, { diff --git a/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14.json b/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14.json index 0d8466e911..69f0cfa325 100644 --- a/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14.json +++ b/tx-backend/testdata/CX_Testdata_MessagingTest_v0.0.14.json @@ -1,34 +1,34 @@ { - "policies": { - "traceability-core": { - "@context": { - "odrl": "http://www.w3.org/ns/odrl/2/" + "policies" : { + "traceability-core" : { + "@context" : { + "odrl" : "http://www.w3.org/ns/odrl/2/" }, - "@type": "PolicyDefinitionRequestDto", - "@id": "traceability-core", - "policy": { - "@type": "odrl:Set", - "odrl:permission": [ + "@type" : "PolicyDefinitionRequestDto", + "@id" : "traceability-core", + "policy" : { + "@type" : "odrl:Set", + "odrl:permission" : [ { "odrl:action" : "use", - "odrl:constraint": { - "@type": "AtomicConstraint", - "odrl:and": [ + "odrl:constraint" : { + "@type" : "AtomicConstraint", + "odrl:and" : [ { - "@type": "Constraint", - "odrl:leftOperand": "https://w3id.org/catenax/policy/FrameworkAgreement", - "odrl:operator": { - "@id": "odrl:eq" + "@type" : "Constraint", + "odrl:leftOperand" : "https://w3id.org/catenax/policy/FrameworkAgreement", + "odrl:operator" : { + "@id" : "odrl:eq" }, - "odrl:rightOperand": "traceability:1.0" + "odrl:rightOperand" : "traceability:1.0" }, { - "@type": "Constraint", - "odrl:leftOperand": "https://w3id.org/catenax/policy/UsagePurpose", - "odrl:operator": { - "@id": "odrl:eq" + "@type" : "Constraint", + "odrl:leftOperand" : "https://w3id.org/catenax/policy/UsagePurpose", + "odrl:operator" : { + "@id" : "odrl:eq" }, - "odrl:rightOperand": "cx.core.industrycore:1" + "odrl:rightOperand" : "cx.core.industrycore:1" } ] } @@ -40,20 +40,20 @@ "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { "catenaXId" : "urn:uuid:0fed587c-7ab4-4597-9841-1718e9693003", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "PlainObject" : [ { - "BPN_OEM_C" : "BPNL000000000UKM", + "BPN_OEM_C" : "BPNL00000003CML1", "BPN_OEM_A" : "BPNL00000003CSGV", "BPN_OEM_B" : "BPNL00000003AZQP", - "BPN_OEM_D" : "BPNL000000000DWF", + "BPN_OEM_D" : "BPNL00000003CNKC", "CREATION_DATE" : "2022-09-26T12:43:51.079Z" } ] }, { "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", @@ -66,7 +66,7 @@ "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "hasAlternatives" : false } ] @@ -76,7 +76,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -109,7 +109,7 @@ }, { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", @@ -132,7 +132,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -164,7 +164,7 @@ { "catenaXId" : "urn:uuid:7eeeac86-7b69-444d-81e6-655d0f1513bd", "customers" : [ - "BPNL000000000UKM" + "BPNL00000003CML1" ], "parentItems" : [ { @@ -175,7 +175,7 @@ "catenaXId" : "urn:uuid:6b2296cc-26c0-4f38-8a22-092338c36e22", "createdOn" : "2023-05-29T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "isOnlyPotentialParent" : false } ] @@ -221,7 +221,7 @@ { "catenaXId" : "urn:uuid:1d2d8480-90a5-4a17-9ecb-2ff039d35fec", "customers" : [ - "BPNL000000000DWF" + "BPNL00000003CNKC" ], "parentItems" : [ { @@ -233,7 +233,7 @@ "createdOn" : "2023-06-18T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL000000000DWF" + "businessPartner" : "BPNL00000003CNKC" } ] } @@ -241,7 +241,7 @@ }, { "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", @@ -254,7 +254,7 @@ "createdOn" : "2021-01-15T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "hasAlternatives" : false } ] @@ -264,7 +264,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -297,7 +297,7 @@ }, { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", @@ -310,7 +310,7 @@ "createdOn" : "2020-05-02T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "hasAlternatives" : false } ] @@ -320,7 +320,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -352,7 +352,7 @@ { "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", "customers" : [ - "BPNL000000000UKM" + "BPNL00000003CML1" ], "parentItems" : [ { @@ -363,7 +363,7 @@ "catenaXId" : "urn:uuid:d8030bbf-a874-49fb-b2e1-7610f0ccad12", "createdOn" : "2023-07-15T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "isOnlyPotentialParent" : false } ] @@ -372,12 +372,12 @@ }, { "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -409,7 +409,7 @@ { "catenaXId" : "urn:uuid:4e390dab-707f-446e-bfbe-653f6f5b1f37", "customers" : [ - "BPNL000000000DWF" + "BPNL00000003CNKC" ], "parentItems" : [ { @@ -420,7 +420,7 @@ "catenaXId" : "urn:uuid:5205f736-8fc2-4585-b869-6bf36842369a", "createdOn" : "2023-12-05T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "isOnlyPotentialParent" : false } ] @@ -429,7 +429,7 @@ }, { "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", @@ -442,7 +442,7 @@ "createdOn" : "2022-11-22T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "hasAlternatives" : false } ] @@ -452,7 +452,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -485,7 +485,7 @@ }, { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", @@ -498,7 +498,7 @@ "createdOn" : "2018-09-17T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "hasAlternatives" : false } ] @@ -508,7 +508,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -540,7 +540,7 @@ { "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", "customers" : [ - "BPNL000000000UKM" + "BPNL00000003CML1" ], "parentItems" : [ { @@ -551,7 +551,7 @@ "catenaXId" : "urn:uuid:7c7d5aec-b15d-491c-8fbd-c61c6c02c69a", "createdOn" : "2023-02-16T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "isOnlyPotentialParent" : false } ] @@ -560,12 +560,12 @@ }, { "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -597,7 +597,7 @@ { "catenaXId" : "urn:uuid:4a5e9ff6-2d5c-4510-a90e-d55af3ba502f", "customers" : [ - "BPNL000000000DWF" + "BPNL00000003CNKC" ], "parentItems" : [ { @@ -608,7 +608,7 @@ "catenaXId" : "urn:uuid:f11ddc62-3bd5-468f-b7b0-110fe13ed0cd", "createdOn" : "2023-04-13T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "isOnlyPotentialParent" : false } ] @@ -630,7 +630,7 @@ "createdOn" : "2021-10-24T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "hasAlternatives" : false } ] @@ -673,7 +673,7 @@ }, { "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { "catenaXId" : "urn:uuid:c47b9f8b-48d0-4ef4-8f0b-e965a225cb8d", @@ -686,7 +686,7 @@ "createdOn" : "2022-06-28T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "hasAlternatives" : false } ] @@ -696,7 +696,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -748,12 +748,12 @@ }, { "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -785,7 +785,7 @@ { "catenaXId" : "urn:uuid:6ec3f1db-2798-454b-a73f-0d21a8966c74", "customers" : [ - "BPNL000000000DWF" + "BPNL00000003CNKC" ], "parentItems" : [ { @@ -797,7 +797,7 @@ "createdOn" : "2023-08-21T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL000000000DWF" + "businessPartner" : "BPNL00000003CNKC" } ] } @@ -834,7 +834,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284b170", "customers" : [ - "BPNL000000000UKM" + "BPNL00000003CML1" ], "parentItems" : [ { @@ -846,7 +846,7 @@ "createdOn" : "2023-06-14T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL000000000UKM" + "businessPartner" : "BPNL00000003CML1" } ] } @@ -854,12 +854,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa01", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -882,12 +882,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -919,7 +919,7 @@ "createdOn" : "2016-01-20T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "hasAlternatives" : false } ] @@ -928,12 +928,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -957,7 +957,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb01", "customers" : [ - "BPNL000000000UKM" + "BPNL00000003CML1" ], "parentItems" : [ { @@ -968,7 +968,7 @@ "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa02", "createdOn" : "2023-08-08T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "isOnlyPotentialParent" : false } ] @@ -977,12 +977,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb02", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -1020,7 +1020,7 @@ "createdOn" : "2019-08-15T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "hasAlternatives" : false } ] @@ -1029,12 +1029,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -1064,7 +1064,7 @@ { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fa03", "customers" : [ - "BPNL000000000DWF" + "BPNL00000003CNKC" ], "parentItems" : [ { @@ -1076,7 +1076,7 @@ "createdOn" : "2022-07-03T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", "isOnlyPotentialParent" : false, - "businessPartner" : "BPNL000000000DWF" + "businessPartner" : "BPNL00000003CNKC" } ] } @@ -1084,12 +1084,12 @@ }, { "catenaXId" : "urn:uuid:1be6ec59-40fb-4993-9836-acb0e284fb03", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -1118,7 +1118,7 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "localIdentifiers" : [ @@ -1172,7 +1172,7 @@ "createdOn" : "2022-08-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", - "businessPartner" : "BPNL000000000DWF" + "businessPartner" : "BPNL00000003CNKC" } ] } @@ -1180,7 +1180,7 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4eb01", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "localIdentifiers" : [ @@ -1234,7 +1234,7 @@ "createdOn" : "2022-09-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z", "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4da01", - "businessPartner" : "BPNL000000000UKM" + "businessPartner" : "BPNL00000003CML1" } ] } @@ -1242,12 +1242,12 @@ }, { "catenaXId" : "urn:uuid:580d3adf-1981-44a0-a214-13d6ceed6841", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -1272,12 +1272,12 @@ }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e43842", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -1302,7 +1302,7 @@ }, { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", @@ -1354,7 +1354,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-10-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1378,14 +1378,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" } ] }, { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", @@ -1447,7 +1447,7 @@ }, { "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98", @@ -1499,7 +1499,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "createdOn" : "2022-01-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1523,14 +1523,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca98" } ] }, { "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a1", @@ -1591,7 +1591,7 @@ }, { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef128c", @@ -1643,7 +1643,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-08T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1653,7 +1653,7 @@ }, { "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", @@ -1694,7 +1694,7 @@ }, { "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", @@ -1746,7 +1746,7 @@ "value" : 1, "unit" : "unit:litre" }, - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-09T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, @@ -1760,7 +1760,7 @@ "value" : 1, "unit" : "unit:litre" }, - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-10T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1770,7 +1770,7 @@ }, { "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", @@ -1825,14 +1825,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" } ] }, { "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", @@ -1884,7 +1884,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "createdOn" : "2022-01-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1908,14 +1908,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" } ] }, { "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", @@ -1967,7 +1967,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-13T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1987,7 +1987,7 @@ "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-14T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -1998,7 +1998,7 @@ }, { "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", @@ -2053,14 +2053,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" } ] }, { "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", @@ -2112,7 +2112,7 @@ "value" : 1, "unit" : "unit:piece" }, - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "createdOn" : "2022-02-16T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2122,7 +2122,7 @@ }, { "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", @@ -2163,12 +2163,12 @@ }, { "catenaXId" : "urn:uuid:44347dec-21d1-47aa-b2a7-f959bf9d424b", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -2235,12 +2235,12 @@ }, { "catenaXId" : "urn:uuid:b0acf3e1-3fbe-46c0-aa0b-0724caae7772", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -2283,12 +2283,12 @@ }, { "catenaXId" : "urn:uuid:1233b405-5ac8-4867-93f8-6fdf37733737", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -2331,12 +2331,12 @@ }, { "catenaXId" : "urn:uuid:da978a30-4dde-4d76-808a-b7946763ff0d", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -2389,12 +2389,12 @@ }, { "catenaXId" : "urn:uuid:bcfae197-40fa-4be0-821d-5c1873a1b7c2", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -2447,12 +2447,12 @@ }, { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4070e", "customers" : [ - "BPNL000000000UKM" + "BPNL00000003CML1" ], "parentItems" : [ { @@ -2463,7 +2463,7 @@ }, "createdOn" : "2023-02-03T14:48:54.709Z", "lastModifiedOn" : "2023-02-03T14:48:54.709Z", - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "isOnlyPotentialParent" : false } ] @@ -2473,7 +2473,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -2512,7 +2512,7 @@ "unit" : "unit:litre" }, "hasAlternatives" : true, - "businessPartner" : "BPNL000000000UKM", + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2522,12 +2522,12 @@ }, { "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fca4f", - "bpnl" : "BPNL000000000UKM", + "bpnl" : "BPNL00000003CML1", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000UKM", + "value" : "BPNL00000003CML1", "key" : "manufacturerId" }, { @@ -2550,14 +2550,14 @@ }, { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { "catenaXId" : "urn:uuid:254604ab-2153-45fb-8cad-54ef09f4080f", "customers" : [ - "BPNL000000000DWF" + "BPNL00000003CNKC" ], - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "parentItems" : [], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" @@ -2567,7 +2567,7 @@ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { @@ -2606,7 +2606,7 @@ "unit" : "unit:litre" }, "hasAlternatives" : true, - "businessPartner" : "BPNL000000000DWF", + "businessPartner" : "BPNL00000003CNKC", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } @@ -2616,12 +2616,12 @@ }, { "catenaXId" : "urn:uuid:e3b2f5e2-5be5-4ea6-98f0-6876de0fcb5f", - "bpnl" : "BPNL000000000DWF", + "bpnl" : "BPNL00000003CNKC", "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL000000000DWF", + "value" : "BPNL00000003CNKC", "key" : "manufacturerId" }, { From e7c28a9559ad56831bfe7a5a9d5ed33888339577 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Mon, 22 Jul 2024 17:29:55 +0200 Subject: [PATCH 14/22] chore(update): xxx - fix regex for version input --- .github/workflows/argo.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/argo.yml b/.github/workflows/argo.yml index fe4505bce4..62fbdfb3d2 100644 --- a/.github/workflows/argo.yml +++ b/.github/workflows/argo.yml @@ -125,8 +125,8 @@ jobs: - name: Check Testdata Version Format run: | - if [[ ! "${{ github.event.inputs.testdata_version }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - echo "Invalid Testdata Version format. Please use X.X.X, e.g., 1.1.12" + if [[ ! "${{ github.event.inputs.testdata_version }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9]+)?$ ]]; then + echo "Invalid Testdata Version format. Please use X.X.X or X.X.X-suffix, e.g., 1.1.12" exit 1 fi From 29040c519c60ca8c817e56d6ce373facfe6ade76 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Tue, 23 Jul 2024 09:04:30 +0200 Subject: [PATCH 15/22] chore(update): xxx - adde --- .github/workflows/argo.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/argo.yml b/.github/workflows/argo.yml index 62fbdfb3d2..571fecc161 100644 --- a/.github/workflows/argo.yml +++ b/.github/workflows/argo.yml @@ -417,9 +417,9 @@ jobs: python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-b-submodel-server.int.demo.catena-x.net -edc https://trace-x-edc-int-b.int.demo.catena-x.net -a https://trace-x-registry-int-b.int.demo.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-b-dataplane.int.demo.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_INT_B }} --aas3 --edcBPN BPNL00000003CNKC --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC BPNL00000003AZQP BPNL00000003CSGV sleep 10 elif [ "${{ github.event.inputs.environment }}" == "association int-a/int-b" ]; then - python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-a-submodel-server.int.catena-x.net -edc https://trace-x-edc-int-a.int.catena-x.net -a https://trace-x-registry-int-a.int.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-a-dataplane.int.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_ASSOCIATION_INT }} --aas3 --edcBPN BPNL00000003CML1 --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC BPNL00000003AZQP BPNL00000003CSGV + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-a-submodel-server.int.catena-x.net -edc https://trace-x-edc-int-a.int.catena-x.net -a https://trace-x-registry-int-a.int.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-a-dataplane.int.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_ASSOCIATION_INT }} --aas3 --edcBPN BPNL000000000UKM --allowedBPNs BPNL000000000UKM BPNL000000000DWF BPNL00000003AZQP BPNL00000003CSGV sleep 10 - python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-b-submodel-server.int.catena-x.net -edc https://trace-x-edc-int-b.int.catena-x.net -a https://trace-x-registry-int-b.int.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-b-dataplane.int.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_ASSOCIATION_INT }} --aas3 --edcBPN BPNL00000003CNKC --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC BPNL00000003AZQP BPNL00000003CSGV + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-b-submodel-server.int.catena-x.net -edc https://trace-x-edc-int-b.int.catena-x.net -a https://trace-x-registry-int-b.int.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-b-dataplane.int.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_ASSOCIATION_INT }} --aas3 --edcBPN BPNL000000000DWF --allowedBPNs BPNL000000000DWF BPNL000000000UKM BPNL00000003AZQP BPNL00000003CSGV sleep 10 fi elif [ "${{ github.event.inputs.testdata_upload }}" == "false" ]; then From 9a790312457c880cf13c72c6d209df34760afee2 Mon Sep 17 00:00:00 2001 From: Maximilian Wesener Date: Tue, 23 Jul 2024 09:41:20 +0200 Subject: [PATCH 16/22] chore(update): 941 - label update --- CHANGELOG.md | 1 + .../page/dashboard/presentation/dashboard.component.html | 4 ++-- .../notification/presentation/notification.component.html | 4 ++-- frontend/src/assets/locales/de/common.json | 4 ++-- frontend/src/assets/locales/en/common.json | 4 ++-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8db32b2983..5bc64251a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha - #1196 Update IRS to 7.3.1 - #941 made the naming for quality notifications consistent throughout the FE app - #1190 store accepted policies in catalog offers on startup +- #941 updated labels from QualityTopic to QualityNotification ### Known knowns - #786 Implemented short term solution for securing EDC Callback APIs diff --git a/frontend/src/app/modules/page/dashboard/presentation/dashboard.component.html b/frontend/src/app/modules/page/dashboard/presentation/dashboard.component.html index 4094e7ec23..fa5495bc88 100644 --- a/frontend/src/app/modules/page/dashboard/presentation/dashboard.component.html +++ b/frontend/src/app/modules/page/dashboard/presentation/dashboard.component.html @@ -117,7 +117,7 @@

Date: Tue, 23 Jul 2024 13:02:54 +0200 Subject: [PATCH 17/22] chore[XXXX]: added action --- .github/workflows/testdata-upload.yaml | 118 +++++++++++++++++++++++++ CHANGELOG.md | 1 + 2 files changed, 119 insertions(+) create mode 100644 .github/workflows/testdata-upload.yaml diff --git a/.github/workflows/testdata-upload.yaml b/.github/workflows/testdata-upload.yaml new file mode 100644 index 0000000000..59addb791c --- /dev/null +++ b/.github/workflows/testdata-upload.yaml @@ -0,0 +1,118 @@ +# Copyright (c) 2023, 2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License, Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0. +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 + +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +name: Testdata import + +on: + workflow_dispatch: + inputs: + environment: + type: choice + description: Which Environment + required: true + options: + - Dev/Test + - E2E-A/E2E-B + - int-a/int-b + - association int-a/int-b + + testdata_version: + description: Which Testdata Version CX_Testdata_MessagingTest_v.json e.g., 0.0.14" + required: true + testdata_upload: + type: choice + description: Do you want a testdata upload? + required: true + options: + - Yes + - No + +jobs: + test_input: + runs-on: ubuntu-latest + steps: + + - name: Checkout-Repository + uses: actions/checkout@v4 + + - name: Check Testdata Version Format + run: | + if [[ ! "${{ github.event.inputs.testdata_version }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9]+)?$ ]]; then + echo "Invalid Testdata Version format. Please use X.X.X or X.X.X-suffix, e.g., 1.1.12" + exit 1 + fi + + print_environment: + needs: test_input + runs-on: ubuntu-latest + steps: + - name: ${{ github.event.inputs.environment }} + run: | + echo "### inputs" >> $GITHUB_STEP_SUMMARY + echo "- environment: ${{ github.event.inputs.environment }}" >> $GITHUB_STEP_SUMMARY + echo "- test data version: ${{ github.event.inputs.testdata_version }}" >> $GITHUB_STEP_SUMMARY + echo "- upload test data: ${{ github.event.inputs.testdata_upload }}" >> $GITHUB_STEP_SUMMARY + + + upload_testdata: + needs: test_state + runs-on: ubuntu-latest + steps: + + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + + - name: Upload testdata + run: | + python -m pip install requests + curl -o transform-and-upload.py https://raw.githubusercontent.com/eclipse-tractusx/item-relationship-service/main/local/testing/testdata/transform-and-upload.py + if [ "${{ github.event.inputs.testdata_upload }}" == "true" ]; then + if [ "${{ github.event.inputs.environment }}" == "Dev/Test" ]; then + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-test-submodel-server.dev.demo.catena-x.net -edc https://trace-x-test-edc.dev.demo.catena-x.net -a https://trace-x-registry-test.dev.demo.catena-x.net/semantics/registry/api/v3 -d https://trace-x-test-edc-dataplane.dev.demo.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_DEV }} --aas3 --edcBPN BPNL00000003CNKC --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC + sleep 10 + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-dev-submodel-server.dev.demo.catena-x.net -edc https://trace-x-edc.dev.demo.catena-x.net -a https://trace-x-registry-dev.dev.demo.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-dataplane.dev.demo.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_DEV }} --aas3 --edcBPN BPNL00000003CML1 --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC + sleep 10 + elif [ "${{ github.event.inputs.environment }}" == "E2E-A/E2E-B" ]; then + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-e2e-a-submodel-server.dev.demo.catena-x.net -edc https://trace-x-edc-e2e-a.dev.demo.catena-x.net -a https://trace-x-registry-e2e-a.dev.demo.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-e2e-a-dataplane.dev.demo.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_DEV }} --aas3 --edcBPN BPNL00000003CML1 --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC + sleep 10 + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-e2e-b-submodel-server.dev.demo.catena-x.net -edc https://trace-x-edc-e2e-b.dev.demo.catena-x.net -a https://trace-x-registry-e2e-b.dev.demo.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-e2e-b-dataplane.dev.demo.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_DEV }} --aas3 --edcBPN BPNL00000003CNKC --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC + sleep 10 + elif [ "${{ github.event.inputs.environment }}" == "int-a/int-b" ]; then + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-a-submodel-server.int.demo.catena-x.net -edc https://trace-x-edc-int-a.int.demo.catena-x.net -a https://trace-x-registry-int-a.int.demo.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-a-dataplane.int.demo.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_INT_A }} --aas3 --edcBPN BPNL00000003CML1 --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC BPNL00000003AZQP BPNL00000003CSGV + sleep 10 + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-b-submodel-server.int.demo.catena-x.net -edc https://trace-x-edc-int-b.int.demo.catena-x.net -a https://trace-x-registry-int-b.int.demo.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-b-dataplane.int.demo.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_INT_B }} --aas3 --edcBPN BPNL00000003CNKC --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC BPNL00000003AZQP BPNL00000003CSGV + sleep 10 + elif [ "${{ github.event.inputs.environment }}" == "association int-a/int-b" ]; then + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-a-submodel-server.int.catena-x.net -edc https://trace-x-edc-int-a.int.catena-x.net -a https://trace-x-registry-int-a.int.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-a-dataplane.int.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_ASSOCIATION_INT }} --aas3 --edcBPN BPNL000000000UKM --allowedBPNs BPNL000000000UKM BPNL000000000DWF BPNL00000003AZQP BPNL00000003CSGV + sleep 10 + python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-b-submodel-server.int.catena-x.net -edc https://trace-x-edc-int-b.int.catena-x.net -a https://trace-x-registry-int-b.int.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-b-dataplane.int.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_ASSOCIATION_INT }} --aas3 --edcBPN BPNL000000000DWF --allowedBPNs BPNL000000000DWF BPNL000000000UKM BPNL00000003AZQP BPNL00000003CSGV + sleep 10 + fi + elif [ "${{ github.event.inputs.testdata_upload }}" == "false" ]; then + echo "Testdata upload skipped" + fi diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bc64251a6..844fd01e13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha - #1108 Added concept for policy management enhancement - #1007 Added data-sovereignty/policy-management section in arc42 documentation - #1190 update notification contracts on policy updates +- XXXX added workflow to import testdata ### Changed - #1070 Correct semantic model in dev/README.md From dcbe89735ccb3a8a4b1476ba653414d56499ff4c Mon Sep 17 00:00:00 2001 From: ashanmugavel Date: Tue, 23 Jul 2024 13:11:13 +0200 Subject: [PATCH 18/22] chore[XXXX]: added action --- .github/workflows/testdata-upload.yaml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/testdata-upload.yaml b/.github/workflows/testdata-upload.yaml index 59addb791c..a24444774a 100644 --- a/.github/workflows/testdata-upload.yaml +++ b/.github/workflows/testdata-upload.yaml @@ -39,13 +39,7 @@ on: testdata_version: description: Which Testdata Version CX_Testdata_MessagingTest_v.json e.g., 0.0.14" required: true - testdata_upload: - type: choice - description: Do you want a testdata upload? - required: true - options: - - Yes - - No + jobs: test_input: @@ -71,11 +65,10 @@ jobs: echo "### inputs" >> $GITHUB_STEP_SUMMARY echo "- environment: ${{ github.event.inputs.environment }}" >> $GITHUB_STEP_SUMMARY echo "- test data version: ${{ github.event.inputs.testdata_version }}" >> $GITHUB_STEP_SUMMARY - echo "- upload test data: ${{ github.event.inputs.testdata_upload }}" >> $GITHUB_STEP_SUMMARY upload_testdata: - needs: test_state + needs: test_input runs-on: ubuntu-latest steps: @@ -91,7 +84,6 @@ jobs: run: | python -m pip install requests curl -o transform-and-upload.py https://raw.githubusercontent.com/eclipse-tractusx/item-relationship-service/main/local/testing/testdata/transform-and-upload.py - if [ "${{ github.event.inputs.testdata_upload }}" == "true" ]; then if [ "${{ github.event.inputs.environment }}" == "Dev/Test" ]; then python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-test-submodel-server.dev.demo.catena-x.net -edc https://trace-x-test-edc.dev.demo.catena-x.net -a https://trace-x-registry-test.dev.demo.catena-x.net/semantics/registry/api/v3 -d https://trace-x-test-edc-dataplane.dev.demo.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_DEV }} --aas3 --edcBPN BPNL00000003CNKC --allowedBPNs BPNL00000003CML1 BPNL00000003CNKC sleep 10 @@ -113,6 +105,4 @@ jobs: python transform-and-upload.py -f ./tx-backend/testdata/CX_Testdata_MessagingTest_v${{ github.event.inputs.testdata_version }}.json -s https://tracex-int-b-submodel-server.int.catena-x.net -edc https://trace-x-edc-int-b.int.catena-x.net -a https://trace-x-registry-int-b.int.catena-x.net/semantics/registry/api/v3 -d https://trace-x-edc-int-b-dataplane.int.catena-x.net -p traceability-core -k ${{ secrets.TRACE_X_API_KEY_ASSOCIATION_INT }} --aas3 --edcBPN BPNL000000000DWF --allowedBPNs BPNL000000000DWF BPNL000000000UKM BPNL00000003AZQP BPNL00000003CSGV sleep 10 fi - elif [ "${{ github.event.inputs.testdata_upload }}" == "false" ]; then - echo "Testdata upload skipped" - fi + From 3794dc5ee48ae8b225a5077ff83d885f4d54e9d6 Mon Sep 17 00:00:00 2001 From: ashanmugavel Date: Tue, 23 Jul 2024 14:45:47 +0200 Subject: [PATCH 19/22] chore[XXXX]: updated action --- .github/workflows/publish-documentation.yaml | 29 +++++++++++++++----- CHANGELOG.md | 2 +- 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-documentation.yaml b/.github/workflows/publish-documentation.yaml index 5970bfe6e0..a8797cc572 100644 --- a/.github/workflows/publish-documentation.yaml +++ b/.github/workflows/publish-documentation.yaml @@ -19,9 +19,14 @@ name: "[BE][FE][DOCUMENTATION] Publish documentation" on: workflow_dispatch: # Trigger manually + pull_request: + paths: + - 'docs/**' push: branches: - main + paths: + - 'docs/**' jobs: publish: @@ -58,11 +63,6 @@ jobs: restore-keys: ${{ runner.os }}-m2 - - name: Build API documentation with Maven - run: | - mvn clean package -pl tx-backend,tx-models -DskipTests --batch-mode - cp tx-backend/target/generated-sources/openapi/index.html docs/src/docs/api-specification/index.html - - name: Build with Maven env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any @@ -127,9 +127,24 @@ jobs: run: | mv docs/src/diagram-replacer/assets/ docs/target/generated-docs/assets/ - - name: GitHub Pages action - uses: peaceiris/actions-gh-pages@v4.0.0 + - name: Generate Swagger UI + uses: Legion2/swagger-ui-action@v1 + with: + output: swagger-ui + spec-file: docs/api/traceability-foss-backend.json + + - name: Update documentation on GitHub Pages + if: github.ref == 'refs/heads/main' + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: "./docs/target/generated-docs" destination_dir: "docs" + + - name: Deploy Swagger UI to GitHub Pages + if: github.ref == 'refs/heads/main' + uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: "swagger-ui" + destination_dir: "docs/swagger-ui" diff --git a/CHANGELOG.md b/CHANGELOG.md index 844fd01e13..68233210bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha - #941 made the naming for quality notifications consistent throughout the FE app - #1190 store accepted policies in catalog offers on startup - #941 updated labels from QualityTopic to QualityNotification - +- XXXX updated publish documentation action ### Known knowns - #786 Implemented short term solution for securing EDC Callback APIs - #1190 CatalogOffers are not able to provide OR constraints therefore notifications are not processed correctly on wrong policy From 8d629d0cf1801461f869bec3b63284dc2e1bd527 Mon Sep 17 00:00:00 2001 From: ashanmugavel Date: Tue, 23 Jul 2024 14:53:56 +0200 Subject: [PATCH 20/22] chore[XXXX]: updated action --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68233210bf..35e253c19f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha ### Changed - #1070 Convert png to svg according to TRG 1.04 - Diagrams as code / Editable static files - #xxx update IRS chart version from 7.3.1 to 7.4.0 +- XXXX updated publish documentation action ## [13.0.0 - 19.07.2024] @@ -35,7 +36,6 @@ _**For better traceability add the corresponding GitHub issue number in each cha - #941 made the naming for quality notifications consistent throughout the FE app - #1190 store accepted policies in catalog offers on startup - #941 updated labels from QualityTopic to QualityNotification -- XXXX updated publish documentation action ### Known knowns - #786 Implemented short term solution for securing EDC Callback APIs - #1190 CatalogOffers are not able to provide OR constraints therefore notifications are not processed correctly on wrong policy From db3ef7e114fb0109fa530a9f9d0ca04103ca43fa Mon Sep 17 00:00:00 2001 From: ashanmugavel Date: Tue, 23 Jul 2024 15:22:43 +0200 Subject: [PATCH 21/22] chore[XXXX]: updated action --- .github/workflows/publish-documentation.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-documentation.yaml b/.github/workflows/publish-documentation.yaml index a8797cc572..e3aa381a4e 100644 --- a/.github/workflows/publish-documentation.yaml +++ b/.github/workflows/publish-documentation.yaml @@ -18,15 +18,13 @@ name: "[BE][FE][DOCUMENTATION] Publish documentation" on: - workflow_dispatch: # Trigger manually + workflow_dispatch: pull_request: - paths: - - 'docs/**' + branches: + - main push: branches: - main - paths: - - 'docs/**' jobs: publish: From 0839b08b248b002c25214be199386361e1ba17c5 Mon Sep 17 00:00:00 2001 From: ashanmugavel Date: Tue, 23 Jul 2024 15:26:13 +0200 Subject: [PATCH 22/22] chore[XXXX]: updated action --- .github/workflows/publish-documentation.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-documentation.yaml b/.github/workflows/publish-documentation.yaml index e3aa381a4e..a8797cc572 100644 --- a/.github/workflows/publish-documentation.yaml +++ b/.github/workflows/publish-documentation.yaml @@ -18,13 +18,15 @@ name: "[BE][FE][DOCUMENTATION] Publish documentation" on: - workflow_dispatch: + workflow_dispatch: # Trigger manually pull_request: - branches: - - main + paths: + - 'docs/**' push: branches: - main + paths: + - 'docs/**' jobs: publish: