From fee26b9377879514e093a0b55703a04bb3de69f5 Mon Sep 17 00:00:00 2001 From: jhartmann Date: Fri, 5 Jul 2024 13:59:44 +0200 Subject: [PATCH] feat(workflows):[#732] update all BPNs in tests and test data to BPNL00000003AYRE --- .github/workflows/tavern-UMBRELLA.yml | 36 +- ...l-bom-as-built-expected-relationships.json | 6 +- ...bom-as-planned-expected-relationships.json | 6 +- ...vel-bom-as-planned-expected-submodels.json | 6 +- ...usage-as-built-expected-relationships.json | 4 +- ...age-as-planned-expected-relationships.json | 4 +- .../TRI-1009-expected-relationships.json | 2 +- .../TRI-1598-expected-relationships.json | 8 +- .../TRI-1598-expected-submodels.json | 4 +- .../TRI-1913-expected-submodels.json | 2 +- .../TRI-1914-expected-submodels.json | 2 +- .../TRI-1915-expected-submodels.json | 2 +- .../TRI-528-expected-relationships.json | 4 +- .../TRI-704-expected-relationships.json | 6 +- .../TRI-704-expected-submodels.json | 16 +- .../TRI-767-expected-relationships.json | 226 +- .../TRI-767-expected-submodels.json | 454 +-- .../TRI-821-expected-relationships.json | 18 +- .../TRI-891-expected-relationships.json | 20 +- .../TRI-893-expected-relationships.json | 10 +- ...irs-helm-529-version-compatibility.feature | 110 + .../features/irs-helm-aspect-models.feature | 137 + .../irs-helm-batch-processing.feature | 84 + .../irs-helm-lifecycle-as-built.feature | 101 + .../irs-helm-lifecycle-as-planned.feature | 71 + .../features/irs-helm-policy-store.feature | 476 +++ .../api-tests/irs-api-tests.tavern.yaml | 1013 +----- .../api-tests/irs-ess-api-tests.tavern.yaml | 1004 ++++++ ...9_compatibility_SingleLevelBomAsBuilt.json | 14 +- ...compatibility_SingleLevelBomAsPlanned.json | 20 +- ...compatibility_SingleLevelUsageAsBuilt.json | 14 +- ...mpatibility_SingleLevelUsageAsPlanned.json | 14 +- .../CX_Testdata_v.1.7.0_PartType.json | 310 +- ....7.0_PartInstance-not-accepted-policy.json | 2 +- ..._Testdata_v1.7.0_PartInstance-reduced.json | 3144 ++++++++--------- 35 files changed, 4179 insertions(+), 3171 deletions(-) create mode 100644 irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-529-version-compatibility.feature create mode 100644 irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-aspect-models.feature create mode 100644 irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-batch-processing.feature create mode 100644 irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-lifecycle-as-built.feature create mode 100644 irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-lifecycle-as-planned.feature create mode 100644 irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-policy-store.feature create mode 100644 local/testing/api-tests/irs-ess-api-tests.tavern.yaml diff --git a/.github/workflows/tavern-UMBRELLA.yml b/.github/workflows/tavern-UMBRELLA.yml index 2793e0876f..5d50aea864 100644 --- a/.github/workflows/tavern-UMBRELLA.yml +++ b/.github/workflows/tavern-UMBRELLA.yml @@ -52,7 +52,7 @@ jobs: pip install tavern pip list - - name: Run tests + - name: Run IRS tests env: IRS_HOST: 'http://localhost:8080' IRS_ESS_HOST: 'http://localhost:8080' @@ -66,7 +66,7 @@ jobs: BPN_ESS_INCIDENT: 'BPNS00000003B6LU' BPN_AS_PLANNED: 'BPNL00000003AYRE' GLOBAL_ASSET_ID_AS_BUILT: 'urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c' - BPN_AS_BUILT: 'BPNL00000003AVTH' + BPN_AS_BUILT: 'BPNL00000003AYRE' run: | python -m pytest local/testing/api-tests/irs-api-tests.tavern.yaml --junitxml=tavern-results.xml @@ -82,6 +82,38 @@ jobs: files: | result.xml + - name: Run ESS tests + if: always() && steps.setup-env.outcome == 'success' + env: + IRS_HOST: 'http://localhost:8080' + IRS_ESS_HOST: 'http://localhost:8080' + REGULAR_USER_API_KEY: 'password' + ADMIN_USER_API_KEY: 'password' + REGULAR_USER_API_KEY_ESS: 'password' + ADMIN_USER_API_KEY_ESS: 'password' + GLOBAL_ASSET_ID_AS_PLANNED: 'urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e' + GLOBAL_ASSET_ID_ESS_AS_BUILT: 'urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7' + BPN_ESS_AS_BUILT: 'BPNL00000003CRHK' + BPN_ESS_INCIDENT: 'BPNS00000003B6LU' + BPN_AS_PLANNED: 'BPNL00000003AYRE' + GLOBAL_ASSET_ID_AS_BUILT: 'urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c' + BPN_AS_BUILT: 'BPNL00000003AYRE' + run: | + python -m pytest local/testing/api-tests/irs-ess-api-tests.tavern.yaml --junitxml=tavern-ess-results.xml + + - name: Mask credentials + if: always() + run: | + sed "s/access_tok.*:s = '.*'//g" tavern-ess-results.xml | sed "s/Authorization: Bearer .*/Authorization:/g" | uniq > ess-result.xml + + - name: Publish Tavern Results + uses: EnricoMi/publish-unit-test-result-action@v2.16.1 + if: always() + with: + files: | + ess-result.xml + + - name: Attach logs if: always() && steps.setup-env.outcome == 'success' uses: ./.github/actions/umbrella-irs-logs diff --git a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-built-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-built-expected-relationships.json index 8a94d9668d..d9cf09c363 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-built-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-built-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003CSAP" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:bec0a457-4d6b-4c1c-88f7-125d04f04d68", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000007RI31" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:6e709d64-bdc7-49f4-a87d-4e1f7e2c3b7c", @@ -55,7 +55,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000007RNYV" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-planned-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-planned-expected-relationships.json index 82698c39df..9ec4a42535 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-planned-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-planned-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000007QG00" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:0bc18367-69c3-428f-925d-6f8a461edefd", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000007QG00" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4e8dd2c1-0d21-4794-af92-03a12f85a2eb", @@ -55,7 +55,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000007QG00" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-planned-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-planned-expected-submodels.json index 0a24054028..c7e23fd81a 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-planned-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-bom-as-planned-expected-submodels.json @@ -14,7 +14,7 @@ "partSitesInformationAsPlanned": [ { "functionValidUntil": "2023-12-11T06:14:55.183Z", - "catenaXsiteId": "BPNL00000007QG00", + "catenaXsiteId": "BPNL00000003AYRE", "function": "production", "functionValidFrom": "2023-12-11T06:14:55.181Z" } @@ -35,7 +35,7 @@ "partSitesInformationAsPlanned": [ { "functionValidUntil": "2023-12-11T06:14:55.183Z", - "catenaXsiteId": "BPNL00000007QG00", + "catenaXsiteId": "BPNL00000003AYRE", "function": "production", "functionValidFrom": "2023-12-11T06:14:55.181Z" } @@ -56,7 +56,7 @@ "partSitesInformationAsPlanned": [ { "functionValidUntil": "2023-12-11T06:14:55.183Z", - "catenaXsiteId": "BPNL00000007QG00", + "catenaXsiteId": "BPNL00000003AYRE", "function": "production", "functionValidFrom": "2023-12-11T06:14:55.181Z" } diff --git a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-usage-as-built-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-usage-as-built-expected-relationships.json index 815019b1a4..0eefd6fa84 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-usage-as-built-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-usage-as-built-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelUsageAsBuilt", - "bpn": "BPNL00000007QG00" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:677582a5-bdca-45e1-a671-7a98ff5ddcb7", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelUsageAsBuilt", - "bpn": "BPNL00000007QG00" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-usage-as-planned-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-usage-as-planned-expected-relationships.json index 05aad0a3d2..728f0880d9 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-usage-as-planned-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/529-single-level-usage-as-planned-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelUsageAsPlanned", - "bpn": "BPNL00000007QG00" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4e8aa114-cf50-4780-811c-11723c9f0647", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelUsageAsPlanned", - "bpn": "BPNL00000007QG00" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1009-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1009-expected-relationships.json index c23eca257e..d0743c3bc2 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1009-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1009-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelUsageAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1598-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1598-expected-relationships.json index 782c804850..71e79398cf 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1598-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1598-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:54d9154a-01a4-47f1-a798-57d86a5744fa", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:54d9154a-01a4-47f1-a798-57d86a5744fa", @@ -55,7 +55,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:81dbecc3-aa15-4da6-9f8c-d48638e333c2", @@ -74,7 +74,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1598-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1598-expected-submodels.json index 70fc5749aa..1b0163e53d 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1598-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1598-expected-submodels.json @@ -7,7 +7,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -43,7 +43,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json index fba3a2d577..1599d5180a 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1913-expected-submodels.json @@ -44,7 +44,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000000BJTL", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json index 3fc0f24b6e..febaa3e03d 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1914-expected-submodels.json @@ -7,7 +7,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json index 838a0841b8..f28cd1a648 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1915-expected-submodels.json @@ -31,7 +31,7 @@ "unit": "unit:kilogram", "value": 0.11 }, - "businessPartner": "BPNL00000003AXS3", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json index 7e9739f2f7..ab8d4cdedf 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AZQP" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4b4d41c3-7a7c-4544-b718-8167a70f517d", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4b4d41c3-7a7c-4544-b718-8167a70f517d", diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json index 66397c3249..54f50106e7 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:aeada37a-a1d8-4535-a476-5f5e1142e3fe", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AZQP" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:aeada37a-a1d8-4535-a476-5f5e1142e3fe", @@ -74,7 +74,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json index 8fc2c2d4b0..03de5e7688 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json @@ -25,7 +25,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B3NX", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -36,7 +36,7 @@ "value": 0.2341 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AZQP", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -50,7 +50,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B2OM", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -175,7 +175,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -218,7 +218,7 @@ "value": 0.1908 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -232,7 +232,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B3NX", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -302,7 +302,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -371,7 +371,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json index e39570b300..4ad4036b64 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -55,7 +55,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -74,7 +74,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -93,7 +93,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -112,7 +112,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -131,7 +131,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -150,7 +150,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -169,7 +169,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B2OM" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -188,7 +188,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -207,7 +207,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -226,7 +226,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -245,7 +245,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -264,7 +264,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -283,7 +283,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -302,7 +302,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -321,7 +321,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -340,7 +340,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -359,7 +359,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003CSGV" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -378,7 +378,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -397,7 +397,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -416,7 +416,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B5MJ" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -435,7 +435,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -454,7 +454,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -473,7 +473,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -492,7 +492,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -511,7 +511,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -530,7 +530,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -549,7 +549,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -568,7 +568,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -587,7 +587,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", @@ -606,7 +606,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003CSGV" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:49a3aa86-f33d-42ae-bcc0-4a0aaaffef15", @@ -625,7 +625,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000000BJTL" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:aeada37a-a1d8-4535-a476-5f5e1142e3fe", @@ -644,7 +644,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AZQP" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:aeada37a-a1d8-4535-a476-5f5e1142e3fe", @@ -682,7 +682,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:54d9154a-01a4-47f1-a798-57d86a5744fa", @@ -701,7 +701,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:54d9154a-01a4-47f1-a798-57d86a5744fa", @@ -720,7 +720,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:54d9154a-01a4-47f1-a798-57d86a5744fa", @@ -739,7 +739,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:10bedf9c-b2e2-4cd8-bb55-290107cceb09", @@ -758,7 +758,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:10bedf9c-b2e2-4cd8-bb55-290107cceb09", @@ -777,7 +777,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:10bedf9c-b2e2-4cd8-bb55-290107cceb09", @@ -796,7 +796,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:10bedf9c-b2e2-4cd8-bb55-290107cceb09", @@ -815,7 +815,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:10bedf9c-b2e2-4cd8-bb55-290107cceb09", @@ -834,7 +834,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:10bedf9c-b2e2-4cd8-bb55-290107cceb09", @@ -853,7 +853,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AVTH" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:3cf1da08-8d3c-4ed5-83f6-387ce60fe434", @@ -872,7 +872,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000000BJTL" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4c9bbfb1-414c-4c55-b197-3b3958d73ea1", @@ -891,7 +891,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:d31645b6-6ff9-4813-a5a1-448e2b992f9e", @@ -1081,7 +1081,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:d31645b6-6ff9-4813-a5a1-448e2b992f9e", @@ -1119,7 +1119,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:bcdf0b54-6249-4eab-b00f-0fc0fd35002f", @@ -1271,7 +1271,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:bcdf0b54-6249-4eab-b00f-0fc0fd35002f", @@ -1461,7 +1461,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:69c58864-983d-4779-bf3b-446f4c41d9b0", @@ -1651,7 +1651,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:10e336f2-8be9-41a5-996d-6889acd22bc5", @@ -1765,7 +1765,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:f00faadd-9031-4cd9-a78f-dc02595e7823", @@ -1784,7 +1784,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:e2d38e2f-7921-4c1f-acfd-56cca5c578cf", @@ -1803,7 +1803,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:36bc49b3-5886-43eb-b1a8-1b94f3ddba34", @@ -1898,7 +1898,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:36bc49b3-5886-43eb-b1a8-1b94f3ddba34", @@ -2031,7 +2031,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:9b5af30e-f63a-43f4-9b84-d85ddaba23be", @@ -2050,7 +2050,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:036a40c4-dde8-4270-b94e-e406cb47d8a9", @@ -2069,7 +2069,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:22270a73-cc32-4b88-a8ee-65604dd9ecba", @@ -2088,7 +2088,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:2032871a-4c03-4273-ac96-2c67cbfddac3", @@ -2107,7 +2107,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:00cb357b-3b31-484b-88e1-e9eba1cd166f", @@ -2126,7 +2126,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:016f7c4c-13c9-47f3-b4c8-b72bbb1b079c", @@ -2145,7 +2145,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:f8341f79-53cf-4f53-9e93-755f25b22669", @@ -2164,7 +2164,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:ed9b249f-8a44-4527-aff3-c3f964fe56b0", @@ -2183,7 +2183,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:e85c3bab-fb1a-418b-8bb2-40313cd40ae8", @@ -2202,7 +2202,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:5850376b-b144-4987-ba17-fe66e8a41b96", @@ -2392,7 +2392,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:5850376b-b144-4987-ba17-fe66e8a41b96", @@ -2430,7 +2430,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:739e7e20-52f3-49e2-ab09-2d101e60d337", @@ -2449,7 +2449,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:f5dc37d4-c6bb-4061-a16b-334577c068d8", @@ -2468,7 +2468,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:b812a6cc-f314-4da7-8f89-8c1cd303a17a", @@ -2487,7 +2487,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:ce3c0f4a-d533-440f-beb2-9f849a5c9aeb", @@ -2506,7 +2506,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:b7b9a99b-85ca-44f5-b38e-118c01060a27", @@ -2525,7 +2525,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:781a9bf0-f62f-4bd7-a1bc-9a978524c257", @@ -2544,7 +2544,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:b0b2918e-6548-4784-83ac-b0a58c6c85c7", @@ -2563,7 +2563,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:6b417197-036a-4d06-9e80-d9570cb9b7ea", @@ -2582,7 +2582,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:9879f313-0770-4102-ba86-d12a81474b21", @@ -2601,7 +2601,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:1ca7d9c8-c890-4ac8-bec6-1ec7822f57ee", @@ -2620,7 +2620,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:2ae5e73e-ee3d-4347-aea8-0743eb461a14", @@ -2639,7 +2639,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:7879fc16-e70b-49a3-bce2-a26dcf54bd96", @@ -2658,7 +2658,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:d7e653d2-5cf0-4269-9227-393914a008a4", @@ -2677,7 +2677,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:0d91053c-00f1-4f78-9fd7-0102a940fc09", @@ -2696,7 +2696,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:cb8a2b54-d0f3-494e-8020-681efcc8cee9", @@ -2715,7 +2715,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4e848f49-b201-4525-9c10-fc665eba4752", @@ -2734,7 +2734,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:5ea28714-5ff1-4069-b36d-a92d7328ffdb", @@ -2753,7 +2753,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:60de85c1-0454-461c-9abc-1d63999eba70", @@ -2772,7 +2772,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:abbae1e1-031b-46ac-913c-6d8c086bbeb6", @@ -2791,7 +2791,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4829e452-d335-4e6d-a5c5-65e250590bf4", @@ -2810,7 +2810,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:a801712e-c2b6-4f62-a1ae-5747eb2551b6", @@ -2829,7 +2829,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:b285a9f7-6cfb-418b-902f-a2aaf32c97a6", @@ -2848,7 +2848,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:86bd0442-efeb-46e4-ab5e-d2fafce2c14f", @@ -2867,7 +2867,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:37a55a98-b867-4081-983a-6a74b95125e6", @@ -2886,7 +2886,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:5beacc74-e2f8-4540-8767-9a0016f0f573", @@ -2905,7 +2905,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:1aee3493-492b-429d-9706-146677b5f54c", @@ -2924,7 +2924,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:7617c6db-a659-458a-8496-662574dc25b1", @@ -2943,7 +2943,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:bf02246a-d1f7-4d8b-a1b6-0a2c20d0541b", @@ -2962,7 +2962,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:4dab36ac-3eb5-452e-ac64-ba1b56a2fe3c", @@ -2981,7 +2981,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:02c41aff-b4de-49f7-aac5-3a84c9a817a8", @@ -3000,7 +3000,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:349822a8-8eae-4960-b694-2e0fbe843c2d", @@ -3019,7 +3019,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:fe2a0a68-bf39-44c4-95dd-f30a86e40500", @@ -3038,7 +3038,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:aca313fa-2519-44e8-856f-31522bddf7e4", @@ -3057,7 +3057,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:e45453a2-2694-4029-bce4-6053fe2e40d7", @@ -3076,7 +3076,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:0234e681-a711-4064-8073-a0b14f809f28", @@ -3095,7 +3095,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:6a7e50f2-76a6-497e-b1a1-ff20aa2ea96d", @@ -3114,7 +3114,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:c20c5d9b-544e-433a-bf32-06b1770d65a8", @@ -3133,7 +3133,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:d7d1a96d-fed2-4888-8506-114b7afaba59", @@ -3152,7 +3152,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:b4754b52-65fd-4b5b-8029-5a95a2a26d52", @@ -3171,7 +3171,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:2a0662ab-ef77-427d-a6a7-fb4a71afd3fc", @@ -3190,7 +3190,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:bfae671b-998e-43f6-82b9-388d1d1720a3", @@ -3209,7 +3209,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:2676285b-1ea1-42b1-b07f-90ccb31a2a48", @@ -3228,7 +3228,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:41082918-060d-46f4-8ce5-ccfc78a3e0b5", @@ -3247,7 +3247,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:1f8df3f0-760e-4870-87f7-c40865a6e8ea", @@ -3266,7 +3266,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:06e4d91c-64ba-4abb-8139-4d479ea81dee", @@ -3285,7 +3285,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:85b308af-a98b-4965-9e6f-b0f0e406ea0c", @@ -3304,7 +3304,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json index 08e2e5075e..c6614a5515 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json @@ -14,7 +14,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -25,7 +25,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003CSGV", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -36,7 +36,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003CSGV", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -47,7 +47,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -58,7 +58,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -69,7 +69,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -80,7 +80,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -91,7 +91,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -102,7 +102,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -113,7 +113,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -124,7 +124,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -135,7 +135,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -146,7 +146,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -157,7 +157,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -168,7 +168,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -179,7 +179,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -190,7 +190,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -201,7 +201,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -212,7 +212,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -223,7 +223,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -234,7 +234,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -245,7 +245,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -256,7 +256,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -267,7 +267,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -278,7 +278,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -289,7 +289,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -300,7 +300,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -311,7 +311,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -322,7 +322,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -333,7 +333,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B2OM", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -344,7 +344,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B5MJ", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -355,7 +355,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -369,7 +369,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -413,7 +413,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -455,7 +455,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -497,7 +497,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -539,7 +539,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -581,7 +581,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -623,7 +623,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -665,7 +665,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -707,7 +707,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -749,7 +749,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -791,7 +791,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -841,7 +841,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -883,7 +883,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -925,7 +925,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -967,7 +967,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1009,7 +1009,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1051,7 +1051,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1093,7 +1093,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1135,7 +1135,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003CSGV", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1192,7 +1192,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000000BJTL", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -1206,7 +1206,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1248,7 +1248,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1290,7 +1290,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1358,7 +1358,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B3NX", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -1369,7 +1369,7 @@ "value": 0.2341 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AZQP", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -1383,7 +1383,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B2OM", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1433,7 +1433,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1475,7 +1475,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1517,7 +1517,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1559,7 +1559,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1608,7 +1608,7 @@ "value": 0.3301 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AXS3", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -1619,7 +1619,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B3NX", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -1630,7 +1630,7 @@ "value": 0.2001 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -1644,7 +1644,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B5MJ", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1686,7 +1686,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1728,7 +1728,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1785,7 +1785,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -1796,7 +1796,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -1807,7 +1807,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -1818,7 +1818,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -1829,7 +1829,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -1840,7 +1840,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AVTH", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -1854,7 +1854,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1911,7 +1911,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000000BJTL", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -1925,7 +1925,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003CSGV", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -1982,7 +1982,7 @@ "value": 0.1908 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -1996,7 +1996,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B3NX", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -2047,7 +2047,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -2083,7 +2083,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -2119,7 +2119,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -2162,7 +2162,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AXS3", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -2286,7 +2286,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -2335,7 +2335,7 @@ "value": 0.1908 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -2349,7 +2349,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B3NX", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -2391,7 +2391,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -2440,7 +2440,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AXS3", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -2564,7 +2564,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -2613,7 +2613,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AXS3", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -2737,7 +2737,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -2816,7 +2816,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000000BJTL", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -2895,7 +2895,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000000BJTL", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -2937,7 +2937,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -2980,7 +2980,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AXS3", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -3104,7 +3104,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -3195,7 +3195,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3216,7 +3216,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3321,7 +3321,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3335,7 +3335,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -3384,7 +3384,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AXS3", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -3515,7 +3515,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3620,7 +3620,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3641,7 +3641,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3704,7 +3704,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3769,7 +3769,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -3854,7 +3854,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3917,7 +3917,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -3938,7 +3938,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4001,7 +4001,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4064,7 +4064,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4169,7 +4169,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4190,7 +4190,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003AXS3", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" }, @@ -4314,7 +4314,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AVTH", + "value": "BPNL00000003AYRE", "key": "manufacturerId" }, { @@ -4405,7 +4405,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4428,7 +4428,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -4473,7 +4473,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -4558,7 +4558,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4621,7 +4621,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4642,7 +4642,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4705,7 +4705,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4810,7 +4810,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4873,7 +4873,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4936,7 +4936,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -4999,7 +4999,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5062,7 +5062,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5083,7 +5083,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5139,7 +5139,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -5182,7 +5182,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5245,7 +5245,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5350,7 +5350,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5413,7 +5413,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5476,7 +5476,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5539,7 +5539,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5560,7 +5560,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5623,7 +5623,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5686,7 +5686,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5742,7 +5742,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -5785,7 +5785,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5841,7 +5841,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -5884,7 +5884,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -5947,7 +5947,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6010,7 +6010,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6066,7 +6066,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -6118,7 +6118,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6181,7 +6181,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6237,7 +6237,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -6282,7 +6282,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -6367,7 +6367,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6430,7 +6430,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6493,7 +6493,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6514,7 +6514,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6570,7 +6570,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -6613,7 +6613,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6669,7 +6669,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -6705,7 +6705,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -6748,7 +6748,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6811,7 +6811,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6916,7 +6916,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6937,7 +6937,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -6993,7 +6993,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7036,7 +7036,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -7092,7 +7092,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7128,7 +7128,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7164,7 +7164,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7200,7 +7200,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7236,7 +7236,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7321,7 +7321,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -7384,7 +7384,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -7398,7 +7398,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7441,7 +7441,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -7497,7 +7497,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7533,7 +7533,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7618,7 +7618,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -7681,7 +7681,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -7695,7 +7695,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7731,7 +7731,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7767,7 +7767,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7803,7 +7803,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -7888,7 +7888,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -7909,7 +7909,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -7965,7 +7965,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8001,7 +8001,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8044,7 +8044,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -8100,7 +8100,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8136,7 +8136,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8172,7 +8172,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8208,7 +8208,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8244,7 +8244,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8329,7 +8329,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -8343,7 +8343,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8379,7 +8379,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8415,7 +8415,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8451,7 +8451,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8487,7 +8487,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8523,7 +8523,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8559,7 +8559,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8595,7 +8595,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8631,7 +8631,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8667,7 +8667,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8703,7 +8703,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8739,7 +8739,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8782,7 +8782,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -8838,7 +8838,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8874,7 +8874,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8910,7 +8910,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8955,7 +8955,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003AXS3", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -8998,7 +8998,7 @@ "value": 20 }, "hasAlternatives": false, - "businessPartner": "BPNL00000003B0Q0", + "businessPartner": "BPNL00000003AYRE", "createdOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z" } @@ -9054,7 +9054,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9090,7 +9090,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9126,7 +9126,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9162,7 +9162,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9198,7 +9198,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9234,7 +9234,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9270,7 +9270,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9306,7 +9306,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9342,7 +9342,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9378,7 +9378,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9414,7 +9414,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9450,7 +9450,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9486,7 +9486,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9522,7 +9522,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9558,7 +9558,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9594,7 +9594,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9630,7 +9630,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9666,7 +9666,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], @@ -9702,7 +9702,7 @@ "payload": { "localIdentifiers": [ { - "value": "BPNL00000003B0Q0", + "value": "BPNL00000003AYRE", "key": "batchId" } ], diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-relationships.json index d3232fc233..4f7d6a6a4c 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-821-expected-relationships.json @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B5MJ" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", @@ -55,7 +55,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B2OM" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", @@ -93,7 +93,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", @@ -112,7 +112,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", @@ -131,7 +131,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", @@ -150,7 +150,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", @@ -188,7 +188,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", @@ -207,7 +207,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", @@ -226,7 +226,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-relationships.json index f7749c3f1a..42c5051d5d 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-891-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B5MJ" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B2OM" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", @@ -55,7 +55,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL50096894aNXY" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", @@ -74,7 +74,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", @@ -93,7 +93,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", @@ -112,7 +112,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", @@ -131,7 +131,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B3NX" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", @@ -150,7 +150,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL50096894aNXY" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", @@ -169,7 +169,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B0Q0" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", @@ -188,7 +188,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL50096894aNXY" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-893-expected-relationships.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-893-expected-relationships.json index 8660465e5c..e0ffe75290 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-893-expected-relationships.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-893-expected-relationships.json @@ -17,7 +17,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003B5MJ" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", @@ -36,7 +36,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL50096894aNXY" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", @@ -55,7 +55,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL50096894aNXY" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", @@ -74,7 +74,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL50096894aNXY" + "bpn": "BPNL00000003AYRE" }, { "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", @@ -93,7 +93,7 @@ "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL00000003AYRE" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-529-version-compatibility.feature b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-529-version-compatibility.feature new file mode 100644 index 0000000000..c800449ee0 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-529-version-compatibility.feature @@ -0,0 +1,110 @@ +# +# Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +# Copyright (c) 2021,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 + + +# Tests for Aspect Version Compatibility +Feature: Integration Tests for Aspect Version Compatibility #529 + + # Notes: + # - For possible values of "direction" and "bomLifecycle" see RelationshipAspect. + # - These tests require the following test data: + # - CX_Testdata_529_compatibility_*.json + + + Background: + Given the IRS URL "http://localhost:8080" + And the admin user api key + + + # Requires test data CX_Testdata_529_compatibility_SingleLevelBomAsBuilt.json + @UMBRELLA @INTEGRATION_TEST + @TRI-2047 + Scenario: SingleLevelBomAsBuilt Version Compatibility + Given I register an IRS job for globalAssetId "urn:uuid:bec0a457-4d6b-4c1c-88f7-125d04f04d68" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + + And direction "downward" + And bomLifecycle "asBuilt" + + And aspects : + | urn:samm:io.catenax.serial_part:1.0.1#SerialPart | + | urn:samm:io.catenax.serial_part:2.0.0#SerialPart | + | urn:samm:io.catenax.serial_part:3.0.0#SerialPart | + + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "relationships" are equal to "529-single-level-bom-as-built-expected-relationships.json" + And I check, if "submodels" are equal to "529-single-level-bom-as-built-expected-submodels.json" + + + # Requires test data CX_Testdata_529_compatibility_SingleLevelBomAsPlanned.json + @UMBRELLA @INTEGRATION_TEST + @TRI-2048 + Scenario: SingleLevelBomAsPlanned Version Compatibility + Given I register an IRS job for globalAssetId "urn:uuid:0bc18367-69c3-428f-925d-6f8a461edefd" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + + And direction "downward" + And bomLifecycle "asPlanned" + + And aspects : + | urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned | + + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "relationships" are equal to "529-single-level-bom-as-planned-expected-relationships.json" + And I check, if "submodels" are equal to "529-single-level-bom-as-planned-expected-submodels.json" + + + # Requires test data CX_Testdata_529_compatibility_SingleLevelUsageAsBuilt.json + @UMBRELLA @INTEGRATION_TEST + @TRI-2049 + Scenario: SingleLevelUsageAsBuilt Version Compatibility + Given I register an IRS job for globalAssetId "urn:uuid:2ea93a69-7ecb-4747-94f4-960c2535dc7b" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + + And direction "upward" + And bomLifecycle "asBuilt" + + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "relationships" are equal to "529-single-level-usage-as-built-expected-relationships.json" + And I check, if "submodels" are equal to "529-single-level-usage-as-built-expected-submodels.json" + + + # Requires test data CX_Testdata_529_compatibility_SingleLevelUsageAsPlanned.json + @UMBRELLA @INTEGRATION_TEST + @TRI-2050 + Scenario: SingleLevelUsageAsPlanned Version Compatibility + Given I register an IRS job for globalAssetId "urn:uuid:7fe9ac70-23c4-449a-88c1-3832a1cc6da6" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + + And direction "upward" + And bomLifecycle "asPlanned" + + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "relationships" are equal to "529-single-level-usage-as-planned-expected-relationships.json" + And I check, if "submodels" are equal to "529-single-level-usage-as-planned-expected-submodels.json" + + diff --git a/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-aspect-models.feature b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-aspect-models.feature new file mode 100644 index 0000000000..1aede373e2 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-aspect-models.feature @@ -0,0 +1,137 @@ +# +# Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +# Copyright (c) 2021,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 + +@TRI-1312 +Feature: IRS support for different aspect models + + Background: + Given the IRS URL "http://localhost:8080" + And the admin user api key + + + @UMBRELLA @INTEGRATION_TEST + @TRI-1537 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 @TRI-1682 + Scenario: BomLifecycle 'asBuilt' for testing "JustInSequencePart-Model [BPNL00000003AYRE] + Given I register an IRS job for globalAssetId "urn:uuid:57be2fd7-501e-4fea-9f3b-a6c746c3579d" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + And direction "downward" + And bomLifecycle "asBuilt" + And aspects : + | urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart | + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "submodels" are equal to "TRI-1537-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-1598 @TRI-1941 @TRI-1843 @TRI-1942 @TRI-873 @TRI-1770 @TRI-1682 + Scenario: BomLifecycle 'asBuilt' for testing "Batch"-Model [BPNL00000003AYRE] + Given I register an IRS job for globalAssetId "urn:uuid:54d9154a-01a4-47f1-a798-57d86a5744fa" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + And direction "downward" + And bomLifecycle "asBuilt" + And aspects : + | urn:samm:io.catenax.batch:3.0.0#Batch | + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "relationships" are equal to "TRI-1598-expected-relationships.json" + And I check, if "submodels" are equal to "TRI-1598-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-1918 @TRI-1941 @TRI-1942 @TRI-1843 @TRI-1682 @TRI-1770 @TRI-873 + Scenario: End 2 End for aspects "3.0.0#SingleLevelBomAsBuilt" + Given I register an IRS job for globalAssetId "urn:uuid:5cfb33e5-0a95-40e9-8cec-392ee6da7cf1" and BPN "BPNL00000003AYRE" + And aspects : + | urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt | + And collectAspects "true" + And depth 1 + And bomLifecycle "asBuilt" + And direction "downward" + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if number of "tombstones" equals to "summary/asyncFetchedItems/failed" + And I check, if "summary" contains 7 completed and 0 failed items + And I check, if "submodels" are equal to "TRI-1918-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-1915 @TRI-1941 @TRI-1942 @TRI-1843 @TRI-1682 @TRI-1770 @TRI-873 + Scenario: End 2 End for aspects "3.0.0#SingleLevelBomAsPlanned", "2.0.0#PartAsPlanned" + Given I register an IRS job for globalAssetId "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" and BPN "BPNL00000003AYRE" + And aspects : + | urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned | + | urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned | + And collectAspects "true" + And depth 1 + And bomLifecycle "asPlanned" + And direction "downward" + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if number of "tombstones" equals to "summary/asyncFetchedItems/failed" + And I check, if "summary" contains 3 completed and 0 failed items + And I check, if "submodels" are equal to "TRI-1915-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-1914 @TRI-1941 @TRI-1942 @TRI-1843 @TRI-1770 @TRI-1682 @TRI-873 + Scenario: End 2 End for aspects "3.0.0#Batch" with "1.0.0#PartSiteInformationAsBuilt" + Given I register an IRS job for globalAssetId "urn:uuid:d78045d5-4ee7-4980-b24c-31dafeb6f54f" and BPN "BPNL00000003AYRE" + And aspects : + | urn:samm:io.catenax.batch:3.0.0#Batch | + And collectAspects "true" + And depth 1 + And bomLifecycle "asBuilt" + And direction "downward" + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if number of "tombstones" equals to "summary/asyncFetchedItems/failed" + And I check, if "summary" contains 1 completed and 0 failed items + And I check, if "submodels" are equal to "TRI-1914-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-1913 @TRI-1941 @TRI-1942 @TRI-1843 @TRI-1682 @TRI-1770 @TRI-873 + Scenario: End 2 End for aspects "3.0.0#JustInSequencePart", "3.0.0#SerialPart" with "1.0.0#PartSiteInformationAsBuilt" + Given I register an IRS job for globalAssetId "urn:uuid:fc9a079f-1b55-4ccc-8649-e188f899bf39" and BPN "BPNL00000003AYRE" + And aspects : + | urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart | + | urn:samm:io.catenax.serial_part:3.0.0#SerialPart | + And collectAspects "true" + And depth 1 + And bomLifecycle "asBuilt" + And direction "downward" + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if number of "tombstones" equals to "summary/asyncFetchedItems/failed" + And I check, if "summary" contains 1 completed and 0 failed items + And I check, if "submodels" are equal to "TRI-1913-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-528 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 @TRI-1682 + Scenario: End 2 End for aspect "MaterialForRecycling" + Given I register an IRS job for globalAssetId "urn:uuid:4b4d41c3-7a7c-4544-b718-8167a70f517d" and BPN "BPNL00000003AYRE" + And aspects : + | urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling | + And collectAspects "true" + And depth 1 + And direction "downward" + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if number of "tombstones" equals to "summary/asyncFetchedItems/failed" + And I check, if "summary" contains 4 completed and 0 failed items + And I check, if "relationships" are equal to "TRI-528-expected-relationships.json" + And I check, if "submodels" are equal to "TRI-528-expected-submodels.json" \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-batch-processing.feature b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-batch-processing.feature new file mode 100644 index 0000000000..ef8d174022 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-batch-processing.feature @@ -0,0 +1,84 @@ +# +# Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +# Copyright (c) 2021,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 + +@TRI-1018 +Feature: IRS Batch Processing + + Background: + Given the IRS URL "http://localhost:8080" + And the admin user api key + + + @UMBRELLA @INTEGRATION_TEST + @TRI-1267 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 + Scenario: Check correct job executions of batch processing (SingleLevelBomAsBuilt/SerialPart 3.0.0) + Given I register an IRS batch job for globalAssetIds and BPNs: + | globalAssetId | bpn | + | urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743 | BPNS00000008BDFH | + | urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7 | BPNS00000008BDFH | + | urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e | BPNS00000008BDFH | + | urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355 | BPNS00000008BDFH | + | urn:uuid:88f51be1-3771-4335-8b5c-4c5050123127 | BPNS00000008BDFH | + | urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6 | BPNS00000008BDFH | + | urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68 | BPNS00000008BDFH | + | urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8 | BPNS00000008BDFH | + | urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891 | BPNS00000008BDFH | + | urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd | BPNS00000008BDFH | + | urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0 | BPNS00000008BDFH | + | urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21 | BPNS00000008BDFH | + | urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3 | BPNS00000008BDFH | + | urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461 | BPNS00000008BDFH | + | urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163 | BPNS00000008BDFH | + | urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6 | BPNS00000008BDFH | + | urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001 | BPNS00000008BDFH | + | urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758 | BPNS00000008BDFH | + | urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449 | BPNS00000008BDFH | + | urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13 | BPNS00000008BDFH | + | urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c | BPNS00000008BDFH | + And collectAspects "true" + And depth 1 + And direction "downward" + And bomLifecycle "asBuilt" + And batchStrategy "PRESERVE_BATCH_JOB_ORDER" + And batchSize 10 + And callbackUrl "https://www.check123.com" + And aspects : + | urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt | + | urn:samm:io.catenax.serial_part:3.0.0#SerialPart | + + When I get the order-id + Then I check, if the order contains 3 batches + And I check, if batch 3 contains 1 job + + When I get the batch-id of "first" batch + Then I check, if the batch contains 10 jobs + And I check, if the batchNumber is 1 + And batchTotal is 3 + And totalJobs is 21 + And jobsInBatchChecksum is 10 + + When I get the "first" job-id from batch + Then I check, if job parameter are set with aspects: + | urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt | + | urn:samm:io.catenax.serial_part:3.0.0#SerialPart | + And collectAspects is "true" + And depth is 1 + And direction is "downward" + And bomLifecycle is "asBuilt" + And callbackUrl is "https://www.check123.com" diff --git a/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-lifecycle-as-built.feature b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-lifecycle-as-built.feature new file mode 100644 index 0000000000..944c5e48ef --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-lifecycle-as-built.feature @@ -0,0 +1,101 @@ +# +# Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +# Copyright (c) 2021,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 + +@TRI-982 +Feature: SingleLevelUsageAsBuilt + + Background: + Given the IRS URL "http://localhost:8080" + And the admin user api key + + + @UMBRELLA @INTEGRATION_TEST + @TRI-1009 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 @TRI-1682 + Scenario: End 2 End for upward direction and SingleLevelUsageAsBuilt + Given I register an IRS job for globalAssetId "urn:uuid:97eb9ea6-7e66-4ad8-aefe-6ed8aa78ccce" and BPN "BPNL00000003AYRE" + And direction "upward" + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "summary" contains 2 completed and 0 failed items + And I check, if "relationships" are equal to "TRI-1009-expected-relationships.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-2035 @TRI-1942 @TRI-1843 @TRI-1682 @TRI-1770 @TRI-1941 @TRI-873 + Scenario: Tombstone for not found GlobalAssetId + Given I register an IRS job for globalAssetId "urn:uuid:aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" and BPN "BPNL00000003AYRE" + And depth 1 + And direction "downward" + And bomLifecycle "asBuilt" + When I get the job-id + Then I check, if the job has status "COMPLETED" within 2 minutes + And I check, if "tombstones" are equal to "TRI-2035-expected-tombstones.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-1647 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 @TRI-1682 + Scenario: End 2 End for aspect "TractionBatteryCode" + Given I register an IRS job for globalAssetId "urn:uuid:8f5a73b3-766e-47c7-8780-4760a22329af" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 2 + And direction "downward" + And bomLifecycle "asBuilt" + And aspects : + | urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode | + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "submodels" are equal to "TRI-1647-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-767 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 @TRI-1682 + Scenario: End 2 End for OEM-B (MB) [BPN:BPNL00000003AYRE] (SerialPart 3.0.0, SingleLevelBomAsBuilt 3.0.0 , Batch 3.0.0) + Given I register an IRS job for globalAssetId "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 100 + And direction "downward" + And aspects : + | urn:samm:io.catenax.serial_part:3.0.0#SerialPart | + | urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt | + | urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart | + | urn:samm:io.catenax.batch:3.0.0#Batch | + When I get the job-id + Then I check, if the job has status "COMPLETED" within 30 minutes + And I check, if number of "tombstones" equals to "summary/asyncFetchedItems/failed" + And I check, if "summary" contains 175 completed and 1 failed items + And I check, if "relationships" are equal to "TRI-767-expected-relationships.json" + And I check, if "submodels" are equal to "TRI-767-expected-submodels.json" + And I check, if submodels contains BPNL number "BPNL00000003AYRE" exactly 248 times + + @UMBRELLA @INTEGRATION_TEST + @TRI-704 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 @TRI-1682 + Scenario: End 2 End for Tier A (ZF) [BPN:BPNL00000003AYRE] (SerialPart 3.0.0, SingleLevelBomAsBuilt 3.0.0 , Batch 3.0.0) + Given I register an IRS job for globalAssetId "urn:uuid:aeada37a-a1d8-4535-a476-5f5e1142e3fe" and BPN "BPNL00000003AYRE" + And aspects : + | urn:samm:io.catenax.serial_part:3.0.0#SerialPart | + | urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt | + | urn:samm:io.catenax.batch:3.0.0#Batch | + | urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling | + And collectAspects "true" + And depth 100 + And direction "downward" + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if number of "tombstones" equals to "summary/asyncFetchedItems/failed" + And I check, if "summary" contains 5 completed and 0 failed items + And I check, if "relationships" are equal to "TRI-704-expected-relationships.json" + And I check, if "submodels" are equal to "TRI-704-expected-submodels.json" + And I check, if submodels contains BPNL number "BPNL00000003AYRE" exactly 7 times \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-lifecycle-as-planned.feature b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-lifecycle-as-planned.feature new file mode 100644 index 0000000000..4bef60e658 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-lifecycle-as-planned.feature @@ -0,0 +1,71 @@ +# +# Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +# Copyright (c) 2021,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 + +@TRI-512 +Feature: BomLifecycle 'asPlanned' implementation + + Background: + Given the IRS URL "http://localhost:8080" + And the admin user api key + + + @UMBRELLA @INTEGRATION_TEST + @TRI-893 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 + Scenario: End 2 End for BomLifecycle 'asPlanned' Vehicle Model C for SAP [BPNL00000003AYRE] + Given I register an IRS job for globalAssetId "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + And direction "downward" + And bomLifecycle "asPlanned" + And aspects : + | urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned | + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "relationships" are equal to "TRI-893-expected-relationships.json" + And I check, if "submodels" are equal to "TRI-893-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-891 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 + Scenario: End 2 End for BomLifecycle 'asPlanned' Vehicle Model B for MercedesBenz [BPNL00000003AYRE] + Given I register an IRS job for globalAssetId "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + And direction "downward" + And bomLifecycle "asPlanned" + And aspects : + | urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned | + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "relationships" are equal to "TRI-891-expected-relationships.json" + And I check, if "submodels" are equal to "TRI-891-expected-submodels.json" + + @UMBRELLA @INTEGRATION_TEST + @TRI-821 @TRI-1941 @TRI-1942 @TRI-873 @TRI-1843 @TRI-1770 + Scenario: End 2 End for BomLifecycle 'asPlanned' Vehicle Model A for BMW [BPNL00000003AYRE] + Given I register an IRS job for globalAssetId "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e" and BPN "BPNL00000003AYRE" + And collectAspects "true" + And depth 10 + And direction "downward" + And bomLifecycle "asPlanned" + And aspects : + | urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned | + When I get the job-id + Then I check, if the job has status "COMPLETED" within 20 minutes + And I check, if "relationships" are equal to "TRI-821-expected-relationships.json" + And I check, if "submodels" are equal to "TRI-821-expected-submodels.json" \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-policy-store.feature b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-policy-store.feature new file mode 100644 index 0000000000..987acf1817 --- /dev/null +++ b/irs-cucumber-tests/src/test/resources/org/eclipse/tractusx/irs/cucumber/features/irs-helm-policy-store.feature @@ -0,0 +1,476 @@ +# +# Copyright (c) 2022,2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +# Copyright (c) 2021,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 + +Feature: IRS Policy Store + + Background: + Given the IRS URL "http://localhost:8080" -- policystore + And the admin user api key -- policystore + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-2005 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Delete policy for BPN + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # set up testdata + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "BPNL1234567890AB" and validUntil "4444-11-11T11:11:11.111Z" + Given I add policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" to given BPNs using validUntil "3333-11-11T11:11:11.111Z": + | BPNL1234567890AB | + | BPNL1234567890EF | + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Given I add policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" to given BPNs using validUntil "3333-11-11T11:11:11.111Z": + | BPNL1234567890AB | + | BPNL1234567890CD | + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" is registered for BPN "BPNL1234567890CD" and validUntil "4444-11-11T11:11:11.111Z" + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" is registered for BPN "BPNL1234567890CD" and validUntil "4444-11-11T11:11:11.111Z" + + # check the testdata preconditions + When I successfully fetch all policies + Then the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890EF | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-555555555555 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-666666666666 | + + # act and assert + When I remove the policy "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" from BPN "BPNL1234567890AB" + Then the delete policy response should have HTTP status 200 + When I successfully fetch all policies + Then the BPN "BPNL1234567890AB" should have 1 policies having policyId starting with "aaaaaaaa-aaaa-aaaa-aaaa-" + And the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890EF | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-555555555555 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-666666666666 | + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-2004 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Trying to register a policy without payload should fail (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # act and assert + When a policy WITHOUT payload is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + And the create policy response should have message containing "payload" + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-111111111111" WITH EMPTY definition is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + And the create policy response should have message containing "does not contain all required fields" + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1996 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Try to update policy with invalid policyId (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # act and assert + When I update policy "#INVALID-POLICY-ID#", BPN "BPNL1234567890AB", validUntil "3334-11-11T11:11:11.111Z" + Then the update policy response should have HTTP status 400 + And the update policy response should have message containing "must only contain safe URL path variable characters" + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1995 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Try to delete policy with invalid policyId (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # act and assert + When I delete the policy "#INVALID-POLICY-ID#" + Then the delete policy response should have HTTP status 400 + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1993 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Registering a duplicate policy for same BPNL fails (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # act and assert + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-111111111111" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-111111111111" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + And the create policy response should have message containing "already exists" + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1988 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Try to register policy with invalid policyId (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # act and assert + When a policy with policyId "#INVALID-POLICY-ID#" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1984 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Updating policy for invalid BPNL (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + + # act and assert + When I update policy "aaaaaaaa-aaaa-aaaa-aaaa-333333333333", BPN "BPNA1234567890AB", validUntil "3333-11-11T11:11:11.111Z" + Then the update policy response should have HTTP status 400 + + When I update policy "aaaaaaaa-aaaa-aaaa-aaaa-333333333333", BPN "BPNS1234567890AB", validUntil "3333-11-11T11:11:11.111Z" + Then the update policy response should have HTTP status 400 + + When I update policy "aaaaaaaa-aaaa-aaaa-aaaa-333333333333", BPN "BPNACB", validUntil "3333-11-11T11:11:11.111Z" + Then the update policy response should have HTTP status 400 + + When I update policy "aaaaaaaa-aaaa-aaaa-aaaa-333333333333", BPN "ERRRES", validUntil "3333-11-11T11:11:11.111Z" + Then the update policy response should have HTTP status 400 + + When I update policy "aaaaaaaa-aaaa-aaaa-aaaa-333333333333", BPN "DELETE * FROM Table", validUntil "3333-11-11T11:11:11.111Z" + Then the update policy response should have HTTP status 400 + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1981 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Registering policy for invalid BPNL (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # act and assert + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "BPNA1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "BPNS1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "BPNACB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "ERRRES" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "DELETE * FROM Table" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 400 + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1966 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Fetching policies by BPNLs should fail for invalid BPNLs (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # test data setup + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" is registered for BPN "BPNL1234567890CD" and validUntil "4444-11-11T11:11:11.111Z" + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" is registered for BPN "BPNL1234567890EF" and validUntil "5555-11-11T11:11:11.111Z" + + # act + When I fetch policies for BPNs: + | BPNL1234567890AB | + | BPNL1234567890CD | + Then the fetch policies for BPN response should have HTTP status 200 + + When I fetch policies for BPNs: + | BPNL1234567890CD | + | INVALID | + Then the fetch policies for BPN response should have HTTP status 400 + + When I fetch policies for BPNs: + | BPNACB | + Then the fetch policies for BPN response should have HTTP status 400 + + When I fetch policies for BPNs: + | ERRRES | + Then the fetch policies for BPN response should have HTTP status 400 + + When I fetch policies for BPNs: + | DELETE * FROM Table | + Then the fetch policies for BPN response should have HTTP status 400 + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1965 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Register policy without validUntil (bad case) + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # act + Given I want to register a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" + And the policy should be associated to BPN "BPNL1234567890AB" + And the policy should have no validUntil + When I register the policy + + # assert + Then the create policy response should have HTTP status 400 + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1955 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Delete some policies + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # set up testdata + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "BPNL1234567890AB" and validUntil "4444-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" + + Given I add policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" to given BPNs using validUntil "3333-11-11T11:11:11.111Z": + | BPNL1234567890AB | + | BPNL1234567890EF | + Then the update policy response should have HTTP status 200 + + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" + + Given I add policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" to given BPNs using validUntil "3333-11-11T11:11:11.111Z": + | BPNL1234567890AB | + | BPNL1234567890CD | + Then the update policy response should have HTTP status 200 + + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" is registered for BPN "BPNL1234567890CD" and validUntil "4444-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" + + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" is registered for BPN "BPNL1234567890CD" and validUntil "4444-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" + + # check the testdata preconditions + When I successfully fetch all policies + Then the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890EF | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-555555555555 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-666666666666 | + + # act and assert + When I delete the policy "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" + Then the delete policy response should have HTTP status 200 + + When I delete the policy "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" + Then the delete policy response should have HTTP status 200 + + When I delete the policy "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" + Then the delete policy response should have HTTP status 200 + + When I successfully fetch all policies + Then the BPN "BPNL1234567890CD" should have 0 policies having policyId starting with "aaaaaaaa-aaaa-aaaa-aaaa-" + And the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890EF | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1954 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Add policyId to given BPNs + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # set up testdata + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" + + # check the testdata preconditions + When I successfully fetch all policies + Then the BPN "BPNL1234567890AB" should have the following policies: + | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + And the BPN "BPNL1234567890CD" should have 0 policies having policyId starting with "aaaaaaaa-aaaa-aaaa-aaaa-" + + # act and assert + When I want to update the policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" + And the policy should be associated to the following BPNs: + | BPNL1234567890AB | + | BPNL1234567890CD | + And the policy should have validUntil "3334-11-11T11:11:11.111Z" + And I update the policy + Then the update policy response should have HTTP status 200 + + When I successfully fetch all policies + Then the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1953 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Add BPN to policy + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # set up testdata + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" + + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" is registered for BPN "BPNL1234567890CD" and validUntil "4444-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" + + # act and assert + When I update policy "aaaaaaaa-aaaa-aaaa-aaaa-33333333333", BPN "BPNL1234567890CD", validUntil "3334-11-11T11:11:11.111Z" + Then the update policy response should have HTTP status 200 + + When I successfully fetch all policies + Then the BPN "BPNL1234567890CD" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" and validUntil "4444-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890CD" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" and validUntil "3334-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890AB" should have 0 policies having policyId starting with "aaaaaaaa-aaaa-aaaa-aaaa-" + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1952 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Update a policy validUntil date for a policy that is associated to multiple BPNs + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # set up testdata + Given I want to register a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" + And the policy should be associated to BPN "BPNL1234567890AB" + And the policy should have validUntil "3333-11-11T11:11:11.111Z" + When I register the policy + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" + + Given I want to register a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" + And the policy should be associated to BPN "BPNL1234567890AB" + And the policy should have validUntil "4444-11-11T11:11:11.111Z" + And the policy should be associated to the following BPNs: + | BPNL1234567890AB | + | BPNL1234567890CD | + When I register the policy + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" is registered for BPN "BPNL1234567890CD" and validUntil "5555-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" is registered for BPN "BPNL1234567890CD" and validUntil "6666-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" + + # check the testdata preconditions + When I successfully fetch all policies + Then the BPN "BPNL1234567890AB" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" and validUntil "3333-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890AB" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" and validUntil "4444-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890CD" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" and validUntil "4444-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890CD" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" and validUntil "5555-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890CD" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" and validUntil "6666-11-11T11:11:11.111Z" + + # act + When I update policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" and given BPNs using validUntil "2223-11-11T11:11:11.111Z": + | BPNL1234567890AB | + | BPNL1234567890CD | + Then the update policy response should have HTTP status 200 + + # assert + When I successfully fetch all policies + Then the BPN "BPNL1234567890AB" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" and validUntil "3333-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890AB" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" and validUntil "2223-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890CD" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" and validUntil "2223-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890CD" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" and validUntil "5555-11-11T11:11:11.111Z" + And the BPN "BPNL1234567890CD" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" and validUntil "6666-11-11T11:11:11.111Z" + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1951 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Update a policy validUntil date + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # set up testdata + Given a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" is registered for BPN "BPNL1234567890AB" and validUntil "3333-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" + + # act and assert + When I update policy "aaaaaaaa-aaaa-aaaa-aaaa-33333333333", BPN "BPNL1234567890AB", validUntil "3334-11-11T11:11:11.111Z" + Then the update policy response should have HTTP status 200 + When I successfully fetch all policies + Then the BPN "BPNL1234567890AB" should have a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-33333333333" and validUntil "3334-11-11T11:11:11.111Z" + + @UMBRELLA @INTEGRATION_TEST + @POLICY_STORE_API + @TRI-1950 @TRI-1843 @TRI-1941 @TRI-873 + Scenario: Policy Store API: Register policies + # cleanup + Given no policies with prefix "aaaaaaaa-aaaa-aaaa-aaaa-" exist + + # act and assert + Given I want to register a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" + And the policy should be associated to BPN "BPNL1234567890AB" + And the policy should have validUntil "3333-11-11T11:11:11.111Z" + When I register the policy + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-333333333333" + + Given I want to register a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" + And the policy should be associated to the following BPNs: + | BPNL1234567890AB | + | BPNL1234567890CD | + And the policy should have validUntil "4444-11-11T11:11:11.111Z" + When I register the policy + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-444444444444" + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" is registered for BPN "BPNL1234567890CD" and validUntil "5555-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-555555555555" + + When a policy with policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" is registered for BPN "BPNL1234567890CD" and validUntil "6666-11-11T11:11:11.111Z" + Then the create policy response should have HTTP status 201 and policyId "aaaaaaaa-aaaa-aaaa-aaaa-666666666666" + + When I successfully fetch all policies + Then the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-555555555555 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-666666666666 | + + When I fetch policies for BPNs: + | BPNL1234567890AB | + Then the fetch policies for BPN response should have HTTP status 200 + And the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + + When I fetch policies for BPNs: + | BPNL1234567890CD | + Then the fetch policies for BPN response should have HTTP status 200 + And the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-555555555555 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-666666666666 | + + When I fetch policies for BPNs: + | BPNL1234567890AB | + | BPNL1234567890CD | + Then the fetch policies for BPN response should have HTTP status 200 + And the BPNs should be associated with policies as follows: + | BPN | policyId | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-333333333333 | + | BPNL1234567890AB | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-444444444444 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-555555555555 | + | BPNL1234567890CD | aaaaaaaa-aaaa-aaaa-aaaa-666666666666 | \ No newline at end of file diff --git a/local/testing/api-tests/irs-api-tests.tavern.yaml b/local/testing/api-tests/irs-api-tests.tavern.yaml index fd6dd13ec9..bcd1bd527e 100644 --- a/local/testing/api-tests/irs-api-tests.tavern.yaml +++ b/local/testing/api-tests/irs-api-tests.tavern.yaml @@ -1,1010 +1,3 @@ -test_name: Make sure investigation job with invalid request is handled correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation with invalid request - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - globalAssetId111: "{tavern.env_vars.GLOBAL_ASSET_ID_ESS_AS_BUILT}" - bpn111: "{tavern.env_vars.BPN_ESS_AS_BUILT}" - incidentBPNSs111: - - "{tavern.env_vars.BPN_ESS_INCIDENT}" - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 400 - verify_response_with: - function: local.testing.api-tests.tavern_helpers:errors_for_invalid_investigation_request_are_correct - json: - statusCode: BAD_REQUEST - error: "Invalid Arguments." - headers: - content-type: application/json - - ---- - - -test_name: Make sure investigation job with valid globalAssetId and BPN is processed correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - # Tested with Vehicle A - globalAssetId: urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e - bpn: BPNL00000003AYRE - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNS00000003B6LU - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - &verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - name: verify job response with desired test steps and wait for desired job status - max_retries: 180 - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - json: - job: - state: COMPLETED - delay_after: 5 - - - name: get response for created investigation - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - headers: - content-type: application/json - - ---- - - -test_name: Make sure investigation job with valid globalAssetId for unknown BPN is processed correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId for unknown BPN - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - # Tested with Vehicle A - globalAssetId: urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e - bpn: BPNL00000003AYRE - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNS00ARBITRARY9 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "No" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - headers: - content-type: application/json - - ---- - - -test_name: Make sure investigation job with unknown globalAssetId and valid BPN is processed correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation with unknown globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - globalAssetId: urn:uuid:2c57b0e9-a653-411d-bdcd-64787e955555 - bpn: BPNL00000003AYRE - incidentBPNSs: - - BPNS00000003B6LU - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Unknown" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - headers: - content-type: application/json - - ---- - - -test_name: Make sure investigation job with valid globalAssetId and valid BPN but partial supply chain is processed correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId and valid BPN - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - #tested with Vehicle D - globalAssetId: urn:uuid:3a2a1ca9-c6c1-49c7-a7ae-1dfc5fb9881f - bpn: BPNL00ARBITRARY8 - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNS0ARBITRARY11 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - headers: - content-type: application/json - - - ---- - - -test_name: Make sure investigation job with valid globalAssetId and valid BPN but not reachable incidentBPN is processed correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId and valid BPN but not reachable incidentBPN - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - #tested with Vehicle B - globalAssetId: urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b - bpn: BPNL00000003B6LU - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNS00000003AXS3 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Unknown" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - headers: - content-type: application/json - - ---- - - -test_name: Make sure investigation job with several relationships for valid globalAssetId and BPN is processed correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId with several relationships - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - # Tested with Vehicle C - globalAssetId: urn:uuid:1c7a25ea-0490-4944-b9c9-d8c666d47958 - bpn: BPNL00ARBITRARY4 - incidentBPNSs: - - BPNS00ARBITRARY7 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:relationships_for_BPN_investigations_contains_several_childs - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - - function: local.testing.api-tests.tavern_helpers:tombstones_are_empty - - function: local.testing.api-tests.tavern_helpers:relationships_are_not_empty - - function: local.testing.api-tests.tavern_helpers:submodels_are_not_empty - - function: local.testing.api-tests.tavern_helpers:check_timestamps_for_completed_jobs - headers: - content-type: application/json - - ---- - - -test_name: Make sure investigation job for globalAssetId with missing PartSiteInformationAsPlanned is processed correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - globalAssetId: urn:uuid:b0faace3-d41f-45b8-9573-175a33efbaaf - bpn: BPNL00ARBITRARY8 - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNL0ARBITRARY11 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Unknown" - - function: local.testing.api-tests.tavern_helpers:tombstones_have_size - extra_kwargs: - number_of_tombstones: 1 - - function: local.testing.api-tests.tavern_helpers:tombstone_for_ess_validation_is_correct - extra_kwargs: - expected_error_detail: "AspectType 'PartSiteInformationAsPlanned' not found in Job." - headers: - content-type: application/json - - ---- - - -test_name: Make sure investigation job for globalAssetId with missing BPNS in PartSiteInformationAsPlanned is processed correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - globalAssetId: urn:uuid:f5024c70-6c4f-4ec5-b23b-aa6a91110611 - bpn: BPNL00ARBITRARY8 - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNL0ARBITRARY11 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation and check results - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Unknown" - - function: local.testing.api-tests.tavern_helpers:tombstones_have_size - extra_kwargs: - number_of_tombstones: 2 - - function: local.testing.api-tests.tavern_helpers:tombstone_for_submodel_validation_is_correct - extra_kwargs: - expected_error_detail: "Submodel payload validation failed. $.sites[0]: required property 'catenaXsiteId' not found" - - function: local.testing.api-tests.tavern_helpers:tombstone_for_ess_validation_is_correct - extra_kwargs: - expected_error_detail: "AspectType 'PartSiteInformationAsPlanned' not found in Job." - headers: - content-type: application/json - - ---- - - -test_name: Make sure first level supplier BPNL in investigation job with four level request has been detected correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - # Tested with Vehicle A - globalAssetId: urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e - bpn: BPNL00000003AYRE - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNS00000003B6LU - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation and check results - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - - function: local.testing.api-tests.tavern_helpers:supplyChainFirstLevelBpn_is_as_expected - extra_kwargs: - expectedBpnl: BPNL00ARBITRARY1 - headers: - content-type: application/json - - ---- - - -test_name: Make sure first level supplier BPNL in investigation job with several impacted nodes has been detected correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - # Tested with Vehicle A on second level - globalAssetId: urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c - bpn: BPNL00ARBITRARY1 - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNS00000003B6LU - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation and check results - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - - function: local.testing.api-tests.tavern_helpers:supplyChainFirstLevelBpn_is_as_expected - extra_kwargs: - expectedBpnl: BPNL00000003B6LU - headers: - content-type: application/json - - ---- - - -test_name: Make sure first level supplier bpnl in investigation job with three level request has been detected correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - # Tested with Vehicle C - globalAssetId: urn:uuid:1c7a25ea-0490-4944-b9c9-d8c666d47958 - bpn: BPNL00ARBITRARY4 - incidentBPNSs: - - BPNS00ARBITRARY7 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation and check results - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - - function: local.testing.api-tests.tavern_helpers:supplyChainFirstLevelBpn_is_as_expected - extra_kwargs: - expectedBpnl: BPNL00ARBITRARY5 - headers: - content-type: application/json - - ---- - - -test_name: Make sure first level supplier bpnl in investigation job with one level request has been detected correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - #tested with Vehicle D - globalAssetId: urn:uuid:3a2a1ca9-c6c1-49c7-a7ae-1dfc5fb9881f - bpn: BPNL00ARBITRARY8 - incidentBPNSs: - - BPNS0ARBITRARY10 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation and check results - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - - function: local.testing.api-tests.tavern_helpers:supplyChainFirstLevelBpn_is_as_expected - extra_kwargs: - expectedBpnl: BPNL0ARBITRARY10 - headers: - content-type: application/json - - ---- - - -test_name: Make sure one hop in several supplyChain impacted nodes has been detected as shortest correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - # Tested with Vehicle A on second level - globalAssetId: urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c - bpn: BPNL00ARBITRARY1 - bomLifecycle: asPlanned - callbackUrl: http://testikus.com - incidentBPNSs: - - BPNS00000003B6LU - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation and check results - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - - function: local.testing.api-tests.tavern_helpers:supplyChainhops_is_as_expected - extra_kwargs: - expectedHops: 1 - headers: - content-type: application/json - - ---- - - -test_name: Make sure three hops in supplyChain impacted investigation job has been detected correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - # Tested with Vehicle C - globalAssetId: urn:uuid:1c7a25ea-0490-4944-b9c9-d8c666d47958 - bpn: BPNL00ARBITRARY4 - incidentBPNSs: - - BPNS00ARBITRARY7 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation and check results - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - - function: local.testing.api-tests.tavern_helpers:supplyChainhops_is_as_expected - extra_kwargs: - expectedHops: 3 - headers: - content-type: application/json - - ---- - - -test_name: Make sure one hops in supplyChain impacted investigation job has been detected correctly - -strict: - - headers:off - - json:off - -stages: - - name: register a BPN investigation job with valid globalAssetId - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" - json: - key: - #tested with Vehicle D - globalAssetId: urn:uuid:3a2a1ca9-c6c1-49c7-a7ae-1dfc5fb9881f - bpn: BPNL00ARBITRARY8 - incidentBPNSs: - - BPNS0ARBITRARY10 - method: POST - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 201 - headers: - content-type: application/json - save: - json: - job_id: id - - - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED - - - name: get response for created investigation and check results - request: - url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" - params: - returnUncompletedJob: true - method: GET - headers: - content-type: application/json - $ext: - function: local.testing.api-tests.tavern_helpers:create_api_key_ess - response: - status_code: 200 - verify_response_with: - - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected - extra_kwargs: - expectedSupplyChainImpacted: "Yes" - - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested - - function: local.testing.api-tests.tavern_helpers:supplyChainhops_is_as_expected - extra_kwargs: - expectedHops: 1 - headers: - content-type: application/json - -############################### \/ ESS Tests with T-Systems and submodel servers \/ ############################## -####### !!!!!! Commented out since there is no testdata available for the moment !!!!!! ###### -#--- -# -# -#test_name: Make sure investigation job with valid globalAssetId and BPN is processed correctly in T-Systems -# -#strict: -# - headers:off -# - json:off -# -#stages: -# - name: register a BPN investigation job with valid globalAssetId to T-Systems -# request: -# url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" -# json: -# key: -# globalAssetId: urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9 -# bpn: BPNL00000003B0Q0 -# bomLifecycle: asPlanned -# callbackUrl: http://testikus.com -# incidentBPNSs: -# - BPNL00000003B0Q0 -# method: POST -# headers: -# content-type: application/json -# $ext: -# function: local.testing.api-tests.tavern_helpers:create_api_key_ess -# response: -# status_code: 201 -# headers: -# content-type: application/json -# save: -# json: -# job_id: id -# -# - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED -# -# - name: get response for created investigation -# request: -# url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" -# params: -# returnUncompletedJob: true -# method: GET -# headers: -# content-type: application/json -# $ext: -# function: local.testing.api-tests.tavern_helpers:create_api_key_ess -# response: -# status_code: 200 -# verify_response_with: -# - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected -# extra_kwargs: -# expectedSupplyChainImpacted: "Yes" -# - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested -# headers: -# content-type: application/json -# - -############################## /\ ESS Tests with T-Systems and submodel servers /\ ############################## -###### !!!!!! Commented out since there is no testdata available for the moment !!!!!! ###### ---- - - test_name: Make sure server process job after authorization (1.0.0) strict: @@ -1518,7 +511,7 @@ stages: json: key: globalAssetId: "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c" - bpn: "BPNL00000003AVTH" + bpn: "BPNL00000003AYRE" aspects: - urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling collectAspects: true @@ -1576,8 +569,8 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "urn:uuid:4c9bbfb1-414c-4c55-b197-3b3958d73ea1" #"urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5" - bpn: "BPNL00000003AVTH" + globalAssetId: "urn:uuid:4c9bbfb1-414c-4c55-b197-3b3958d73ea1" #"urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5" + bpn: "BPNL00000003AYRE" aspects: - urn:samm:io.catenax.batch:3.0.0#Batch collectAspects: true diff --git a/local/testing/api-tests/irs-ess-api-tests.tavern.yaml b/local/testing/api-tests/irs-ess-api-tests.tavern.yaml new file mode 100644 index 0000000000..665e7d1b66 --- /dev/null +++ b/local/testing/api-tests/irs-ess-api-tests.tavern.yaml @@ -0,0 +1,1004 @@ +test_name: Make sure investigation job with invalid request is handled correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation with invalid request + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + globalAssetId111: "{tavern.env_vars.GLOBAL_ASSET_ID_ESS_AS_BUILT}" + bpn111: "{tavern.env_vars.BPN_ESS_AS_BUILT}" + incidentBPNSs111: + - "{tavern.env_vars.BPN_ESS_INCIDENT}" + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 400 + verify_response_with: + function: local.testing.api-tests.tavern_helpers:errors_for_invalid_investigation_request_are_correct + json: + statusCode: BAD_REQUEST + error: "Invalid Arguments." + headers: + content-type: application/json + + +--- + + +test_name: Make sure investigation job with valid globalAssetId and BPN is processed correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + # Tested with Vehicle A + globalAssetId: urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e + bpn: BPNL00000003AYRE + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNS00000003B6LU + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - &verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + name: verify job response with desired test steps and wait for desired job status + max_retries: 180 + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + json: + job: + state: COMPLETED + delay_after: 5 + + - name: get response for created investigation + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + headers: + content-type: application/json + + +--- + + +test_name: Make sure investigation job with valid globalAssetId for unknown BPN is processed correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId for unknown BPN + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + # Tested with Vehicle A + globalAssetId: urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e + bpn: BPNL00000003AYRE + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNS00ARBITRARY9 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "No" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + headers: + content-type: application/json + + +--- + + +test_name: Make sure investigation job with unknown globalAssetId and valid BPN is processed correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation with unknown globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + globalAssetId: urn:uuid:2c57b0e9-a653-411d-bdcd-64787e955555 + bpn: BPNL00000003AYRE + incidentBPNSs: + - BPNS00000003B6LU + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Unknown" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + headers: + content-type: application/json + + +--- + + +test_name: Make sure investigation job with valid globalAssetId and valid BPN but partial supply chain is processed correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId and valid BPN + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + #tested with Vehicle D + globalAssetId: urn:uuid:3a2a1ca9-c6c1-49c7-a7ae-1dfc5fb9881f + bpn: BPNL00ARBITRARY8 + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNS0ARBITRARY11 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + headers: + content-type: application/json + + + +--- + + +test_name: Make sure investigation job with valid globalAssetId and valid BPN but not reachable incidentBPN is processed correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId and valid BPN but not reachable incidentBPN + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + #tested with Vehicle B + globalAssetId: urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b + bpn: BPNL00000003B6LU + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNS00000003AXS3 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Unknown" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + headers: + content-type: application/json + + +--- + + +test_name: Make sure investigation job with several relationships for valid globalAssetId and BPN is processed correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId with several relationships + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + # Tested with Vehicle C + globalAssetId: urn:uuid:1c7a25ea-0490-4944-b9c9-d8c666d47958 + bpn: BPNL00ARBITRARY4 + incidentBPNSs: + - BPNS00ARBITRARY7 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:relationships_for_BPN_investigations_contains_several_childs + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + - function: local.testing.api-tests.tavern_helpers:tombstones_are_empty + - function: local.testing.api-tests.tavern_helpers:relationships_are_not_empty + - function: local.testing.api-tests.tavern_helpers:submodels_are_not_empty + - function: local.testing.api-tests.tavern_helpers:check_timestamps_for_completed_jobs + headers: + content-type: application/json + + +--- + + +test_name: Make sure investigation job for globalAssetId with missing PartSiteInformationAsPlanned is processed correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + globalAssetId: urn:uuid:b0faace3-d41f-45b8-9573-175a33efbaaf + bpn: BPNL00ARBITRARY8 + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNL0ARBITRARY11 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Unknown" + - function: local.testing.api-tests.tavern_helpers:tombstones_have_size + extra_kwargs: + number_of_tombstones: 1 + - function: local.testing.api-tests.tavern_helpers:tombstone_for_ess_validation_is_correct + extra_kwargs: + expected_error_detail: "AspectType 'PartSiteInformationAsPlanned' not found in Job." + headers: + content-type: application/json + + +--- + + +test_name: Make sure investigation job for globalAssetId with missing BPNS in PartSiteInformationAsPlanned is processed correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + globalAssetId: urn:uuid:f5024c70-6c4f-4ec5-b23b-aa6a91110611 + bpn: BPNL00ARBITRARY8 + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNL0ARBITRARY11 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation and check results + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Unknown" + - function: local.testing.api-tests.tavern_helpers:tombstones_have_size + extra_kwargs: + number_of_tombstones: 2 + - function: local.testing.api-tests.tavern_helpers:tombstone_for_submodel_validation_is_correct + extra_kwargs: + expected_error_detail: "Submodel payload validation failed. $.sites[0]: required property 'catenaXsiteId' not found" + - function: local.testing.api-tests.tavern_helpers:tombstone_for_ess_validation_is_correct + extra_kwargs: + expected_error_detail: "AspectType 'PartSiteInformationAsPlanned' not found in Job." + headers: + content-type: application/json + + +--- + + +test_name: Make sure first level supplier BPNL in investigation job with four level request has been detected correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + # Tested with Vehicle A + globalAssetId: urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e + bpn: BPNL00000003AYRE + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNS00000003B6LU + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation and check results + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + - function: local.testing.api-tests.tavern_helpers:supplyChainFirstLevelBpn_is_as_expected + extra_kwargs: + expectedBpnl: BPNL00ARBITRARY1 + headers: + content-type: application/json + + +--- + + +test_name: Make sure first level supplier BPNL in investigation job with several impacted nodes has been detected correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + # Tested with Vehicle A on second level + globalAssetId: urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c + bpn: BPNL00ARBITRARY1 + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNS00000003B6LU + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation and check results + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + - function: local.testing.api-tests.tavern_helpers:supplyChainFirstLevelBpn_is_as_expected + extra_kwargs: + expectedBpnl: BPNL00000003B6LU + headers: + content-type: application/json + + +--- + + +test_name: Make sure first level supplier bpnl in investigation job with three level request has been detected correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + # Tested with Vehicle C + globalAssetId: urn:uuid:1c7a25ea-0490-4944-b9c9-d8c666d47958 + bpn: BPNL00ARBITRARY4 + incidentBPNSs: + - BPNS00ARBITRARY7 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation and check results + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + - function: local.testing.api-tests.tavern_helpers:supplyChainFirstLevelBpn_is_as_expected + extra_kwargs: + expectedBpnl: BPNL00ARBITRARY5 + headers: + content-type: application/json + + +--- + + +test_name: Make sure first level supplier bpnl in investigation job with one level request has been detected correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + #tested with Vehicle D + globalAssetId: urn:uuid:3a2a1ca9-c6c1-49c7-a7ae-1dfc5fb9881f + bpn: BPNL00ARBITRARY8 + incidentBPNSs: + - BPNS0ARBITRARY10 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation and check results + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + - function: local.testing.api-tests.tavern_helpers:supplyChainFirstLevelBpn_is_as_expected + extra_kwargs: + expectedBpnl: BPNL0ARBITRARY10 + headers: + content-type: application/json + + +--- + + +test_name: Make sure one hop in several supplyChain impacted nodes has been detected as shortest correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + # Tested with Vehicle A on second level + globalAssetId: urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c + bpn: BPNL00ARBITRARY1 + bomLifecycle: asPlanned + callbackUrl: http://testikus.com + incidentBPNSs: + - BPNS00000003B6LU + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation and check results + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + - function: local.testing.api-tests.tavern_helpers:supplyChainhops_is_as_expected + extra_kwargs: + expectedHops: 1 + headers: + content-type: application/json + + +--- + + +test_name: Make sure three hops in supplyChain impacted investigation job has been detected correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + # Tested with Vehicle C + globalAssetId: urn:uuid:1c7a25ea-0490-4944-b9c9-d8c666d47958 + bpn: BPNL00ARBITRARY4 + incidentBPNSs: + - BPNS00ARBITRARY7 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation and check results + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + - function: local.testing.api-tests.tavern_helpers:supplyChainhops_is_as_expected + extra_kwargs: + expectedHops: 3 + headers: + content-type: application/json + + +--- + + +test_name: Make sure one hops in supplyChain impacted investigation job has been detected correctly + +strict: + - headers:off + - json:off + +stages: + - name: register a BPN investigation job with valid globalAssetId + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" + json: + key: + #tested with Vehicle D + globalAssetId: urn:uuid:3a2a1ca9-c6c1-49c7-a7ae-1dfc5fb9881f + bpn: BPNL00ARBITRARY8 + incidentBPNSs: + - BPNS0ARBITRARY10 + method: POST + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 201 + headers: + content-type: application/json + save: + json: + job_id: id + + - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED + + - name: get response for created investigation and check results + request: + url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" + params: + returnUncompletedJob: true + method: GET + headers: + content-type: application/json + $ext: + function: local.testing.api-tests.tavern_helpers:create_api_key_ess + response: + status_code: 200 + verify_response_with: + - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected + extra_kwargs: + expectedSupplyChainImpacted: "Yes" + - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested + - function: local.testing.api-tests.tavern_helpers:supplyChainhops_is_as_expected + extra_kwargs: + expectedHops: 1 + headers: + content-type: application/json + +############################### \/ ESS Tests with T-Systems and submodel servers \/ ############################## +####### !!!!!! Commented out since there is no testdata available for the moment !!!!!! ###### +#--- +# +# +#test_name: Make sure investigation job with valid globalAssetId and BPN is processed correctly in T-Systems +# +#strict: +# - headers:off +# - json:off +# +#stages: +# - name: register a BPN investigation job with valid globalAssetId to T-Systems +# request: +# url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" +# json: +# key: +# globalAssetId: urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9 +# bpn: BPNL00000003B0Q0 +# bomLifecycle: asPlanned +# callbackUrl: http://testikus.com +# incidentBPNSs: +# - BPNL00000003B0Q0 +# method: POST +# headers: +# content-type: application/json +# $ext: +# function: local.testing.api-tests.tavern_helpers:create_api_key_ess +# response: +# status_code: 201 +# headers: +# content-type: application/json +# save: +# json: +# job_id: id +# +# - *verify_ESS_job_response_with_desired_test_steps_and_wait_up_to_15_minutes_for_COMPLETED +# +# - name: get response for created investigation +# request: +# url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations/{job_id}" +# params: +# returnUncompletedJob: true +# method: GET +# headers: +# content-type: application/json +# $ext: +# function: local.testing.api-tests.tavern_helpers:create_api_key_ess +# response: +# status_code: 200 +# verify_response_with: +# - function: local.testing.api-tests.tavern_helpers:supplyChainImpacted_is_as_expected +# extra_kwargs: +# expectedSupplyChainImpacted: "Yes" +# - function: local.testing.api-tests.tavern_helpers:ESS_job_parameter_are_as_requested +# headers: +# content-type: application/json +# + +############################## /\ ESS Tests with T-Systems and submodel servers /\ ############################## +###### !!!!!! Commented out since there is no testdata available for the moment !!!!!! ###### diff --git a/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelBomAsBuilt.json b/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelBomAsBuilt.json index 854f83289f..be2be208f7 100644 --- a/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelBomAsBuilt.json +++ b/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelBomAsBuilt.json @@ -41,14 +41,14 @@ "https://catenax.io/schema/TestDataContainer/1.0.0": [ { "catenaXId": "urn:uuid:bec0a457-4d6b-4c1c-88f7-125d04f04d68", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt": [ { "catenaXId": "urn:uuid:bec0a457-4d6b-4c1c-88f7-125d04f04d68", "childItems": [ { "catenaXId": "urn:uuid:589d7f27-d200-4009-b24c-27b0f4b81528", - "businessPartner": "BPNL00000007RI31", + "businessPartner": "BPNL00000003AYRE", "hasAlternatives": false, "quantity": { "value": 20.0, @@ -59,7 +59,7 @@ }, { "catenaXId": "urn:uuid:6e709d64-bdc7-49f4-a87d-4e1f7e2c3b7c", - "businessPartner": "BPNL00000003CSAP", + "businessPartner": "BPNL00000003AYRE", "hasAlternatives": false, "validityPeriod": { "validFrom": "2023-03-21T08:17:29.187+01:00", @@ -100,7 +100,7 @@ }, { "catenaXId": "urn:uuid:589d7f27-d200-4009-b24c-27b0f4b81528", - "bpnl": "BPNL00000007RI31", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_bom_as_built:3.1.0#SingleLevelBomAsBuilt": [ { "catenaXId": "urn:uuid:589d7f27-d200-4009-b24c-27b0f4b81528", @@ -173,14 +173,14 @@ }, { "catenaXId": "urn:uuid:6e709d64-bdc7-49f4-a87d-4e1f7e2c3b7c", - "bpnl": "BPNL00000003CSAP", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt": [ { "catenaXId": "urn:uuid:6e709d64-bdc7-49f4-a87d-4e1f7e2c3b7c", "childItems": [ { "catenaXId": "urn:uuid:d23f278b-2d8b-4f11-af76-2a9a7bb91cfc", - "businessPartner": "BPNL00000007RNYV", + "businessPartner": "BPNL00000003AYRE", "quantity": { "quantityNumber": 2.5, "measurementUnit": "unit:litre" @@ -223,7 +223,7 @@ }, { "catenaXId": "urn:uuid:d23f278b-2d8b-4f11-af76-2a9a7bb91cfc", - "bpnl": "BPNL00000007RNYV", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt": [ { "catenaXId": "urn:uuid:d23f278b-2d8b-4f11-af76-2a9a7bb91cfc", diff --git a/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelBomAsPlanned.json b/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelBomAsPlanned.json index 3d8c29e471..d45a1c9cb5 100644 --- a/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelBomAsPlanned.json +++ b/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelBomAsPlanned.json @@ -41,14 +41,14 @@ "https://catenax.io/schema/TestDataContainer/1.0.0": [ { "catenaXId": "urn:uuid:0bc18367-69c3-428f-925d-6f8a461edefd", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned": [ { "catenaXId": "urn:uuid:0bc18367-69c3-428f-925d-6f8a461edefd", "childItems": [ { "catenaXId": "urn:uuid:db60f953-8894-4568-ab74-746ce00e78a1", - "businessPartner": "BPNL00000007QG00", + "businessPartner": "BPNL00000003AYRE", "validityPeriod": { "validFrom": "2023-03-21T08:17:29.187+01:00", "validTo": "2024-07-01T16:10:00.000+01:00" @@ -62,7 +62,7 @@ }, { "catenaXId": "urn:uuid:4e8dd2c1-0d21-4794-af92-03a12f85a2eb", - "businessPartner": "BPNL00000007QG00", + "businessPartner": "BPNL00000003AYRE", "validityPeriod": { "validFrom": "2023-03-21T08:17:29.187+01:00", "validTo": "2024-07-01T16:10:00.000+01:00" @@ -80,7 +80,7 @@ }, { "catenaXId": "urn:uuid:db60f953-8894-4568-ab74-746ce00e78a1", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_bom_as_planned:3.1.0#SingleLevelBomAsPlanned": [ { "catenaXId": "urn:uuid:db60f953-8894-4568-ab74-746ce00e78a1", @@ -99,7 +99,7 @@ "partSitesInformationAsPlanned": [ { "functionValidUntil": "2023-12-11T06:14:55.183Z", - "catenaXsiteId": "BPNL00000007QG00", + "catenaXsiteId": "BPNL00000003AYRE", "function": "production", "functionValidFrom": "2023-12-11T06:14:55.181Z" } @@ -109,13 +109,13 @@ }, { "catenaXId": "urn:uuid:4e8dd2c1-0d21-4794-af92-03a12f85a2eb", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ { "catenaXId": "urn:uuid:4e8dd2c1-0d21-4794-af92-03a12f85a2eb", "childItems" : [ { "catenaXId" : "urn:uuid:7eb80b65-2e43-438c-8c2a-32b814d2cb88", - "businessPartner" : "BPNL00000007QG00", + "businessPartner" : "BPNL00000003AYRE", "validityPeriod" : { "validFrom" : "2023-03-21T08:17:29.187+01:00", "validTo" : "2024-07-01T16:10:00.000+01:00" @@ -140,7 +140,7 @@ "partSitesInformationAsPlanned": [ { "functionValidUntil": "2023-12-11T06:14:55.183Z", - "catenaXsiteId": "BPNL00000007QG00", + "catenaXsiteId": "BPNL00000003AYRE", "function": "production", "functionValidFrom": "2023-12-11T06:14:55.181Z" } @@ -150,7 +150,7 @@ }, { "catenaXId": "urn:uuid:7eb80b65-2e43-438c-8c2a-32b814d2cb88", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ { "catenaXId": "urn:uuid:7eb80b65-2e43-438c-8c2a-32b814d2cb88", @@ -168,7 +168,7 @@ "partSitesInformationAsPlanned": [ { "functionValidUntil": "2023-12-11T06:14:55.183Z", - "catenaXsiteId": "BPNL00000007QG00", + "catenaXsiteId": "BPNL00000003AYRE", "function": "production", "functionValidFrom": "2023-12-11T06:14:55.181Z" } diff --git a/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelUsageAsBuilt.json b/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelUsageAsBuilt.json index 502b8e4251..a7043cabf8 100644 --- a/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelUsageAsBuilt.json +++ b/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelUsageAsBuilt.json @@ -41,7 +41,7 @@ "https://catenax.io/schema/TestDataContainer/1.0.0": [ { "catenaXId": "urn:uuid:677582a5-bdca-45e1-a671-7a98ff5ddcb7", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt": [ { "catenaXId": "urn:uuid:677582a5-bdca-45e1-a671-7a98ff5ddcb7", @@ -51,14 +51,14 @@ }, { "catenaXId": "urn:uuid:13d35275-3b9b-4f0c-bc5e-00f656bb7cbc", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_usage_as_built:3.1.0#SingleLevelUsageAsBuilt": [ { "catenaXId": "urn:uuid:13d35275-3b9b-4f0c-bc5e-00f656bb7cbc", "parentItems": [ { "catenaXId": "urn:uuid:677582a5-bdca-45e1-a671-7a98ff5ddcb7", - "businessPartner": "BPNL00000007QG00", + "businessPartner": "BPNL00000003AYRE", "isOnlyPotentialParent": false, "quantity": { "value": 11.0, @@ -69,7 +69,7 @@ } ], "customers": [ - "BPNL00000007QG00" + "BPNL00000003AYRE" ], "futureAddedField": "test" } @@ -77,14 +77,14 @@ }, { "catenaXId": "urn:uuid:2ea93a69-7ecb-4747-94f4-960c2535dc7b", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt": [ { "catenaXId": "urn:uuid:2ea93a69-7ecb-4747-94f4-960c2535dc7b", "parentItems": [ { "catenaXId": "urn:uuid:13d35275-3b9b-4f0c-bc5e-00f656bb7cbc", - "businessPartner": "BPNL00000007QG00", + "businessPartner": "BPNL00000003AYRE", "isOnlyPotentialParent": false, "quantity": { "value": 12.0, @@ -95,7 +95,7 @@ } ], "customers": [ - "BPNL00000007QG00" + "BPNL00000003AYRE" ] } ] diff --git a/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelUsageAsPlanned.json b/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelUsageAsPlanned.json index 612199257f..414ef90067 100644 --- a/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelUsageAsPlanned.json +++ b/local/testing/testdata/CX_Testdata_529_compatibility_SingleLevelUsageAsPlanned.json @@ -41,7 +41,7 @@ "https://catenax.io/schema/TestDataContainer/1.0.0": [ { "catenaXId": "urn:uuid:4e8aa114-cf50-4780-811c-11723c9f0647", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_usage_as_planned:2.0.0#SingleLevelUsageAsPlanned": [ { "catenaXId": "urn:uuid:4e8aa114-cf50-4780-811c-11723c9f0647", @@ -51,14 +51,14 @@ }, { "catenaXId": "urn:uuid:01f4b57e-1ab3-4822-ab1b-e20651f6fd32", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_usage_as_planned:2.1.0#SingleLevelUsageAsPlanned": [ { "catenaXId": "urn:uuid:01f4b57e-1ab3-4822-ab1b-e20651f6fd32", "parentItems": [ { "catenaXId": "urn:uuid:4e8aa114-cf50-4780-811c-11723c9f0647", - "businessPartner": "BPNL00000007QG00", + "businessPartner": "BPNL00000003AYRE", "validityPeriod": { "validFrom": "2023-03-21T08:17:29.187+01:00", "validTo": "2024-07-01T16:10:00.000+01:00" @@ -72,7 +72,7 @@ } ], "customers": [ - "BPNL00000007QG00" + "BPNL00000003AYRE" ], "futureAddedField": "test" } @@ -80,14 +80,14 @@ }, { "catenaXId": "urn:uuid:7fe9ac70-23c4-449a-88c1-3832a1cc6da6", - "bpnl": "BPNL00000007QG00", + "bpnl": "BPNL00000003AYRE", "urn:samm:io.catenax.single_level_usage_as_planned:2.0.0#SingleLevelUsageAsPlanned": [ { "catenaXId": "urn:uuid:7fe9ac70-23c4-449a-88c1-3832a1cc6da6", "parentItems": [ { "catenaXId": "urn:uuid:01f4b57e-1ab3-4822-ab1b-e20651f6fd32", - "businessPartner": "BPNL00000007QG00", + "businessPartner": "BPNL00000003AYRE", "validityPeriod": { "validFrom": "2023-03-21T08:17:29.187+01:00", "validTo": "2024-07-01T16:10:00.000+01:00" @@ -101,7 +101,7 @@ } ], "customers": [ - "BPNL00000007QG00" + "BPNL00000003AYRE" ] } ] diff --git a/local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json b/local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json index c3fe01b1fa..83a6b19e34 100644 --- a/local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json +++ b/local/testing/testdata/CX_Testdata_v.1.7.0_PartType.json @@ -42,29 +42,29 @@ "catenaXId" : "urn:uuid:220dc16b-fb67-4d85-a7da-d3ed0a523990", "bpnl" : "null", "PlainObject" : [ { - "BPN_OEM_C" : "BPNL00000003AZQP", + "BPN_OEM_C" : "BPNL00000003AYRE", "BPN_OEM_A" : "BPNL00000003AYRE", - "BPN_OEM_B" : "BPNL00000003AVTH", - "BPN_IRS_TEST" : "BPNL00000003AWSS", - "BPN_N_TIER_A" : "BPNL00000003B0Q0", + "BPN_OEM_B" : "BPNL00000003AYRE", + "BPN_IRS_TEST" : "BPNL00000003AYRE", + "BPN_N_TIER_A" : "BPNL00000003AYRE", "BPN_NATURAL_RUBBER_SITE_A" : "BPNS000000000001", "AUTHOR" : "christian.kabelin@ventum.de", - "BPN_NATURAL_RUBBER" : "BPNL00000007OR16", + "BPN_NATURAL_RUBBER" : "BPNL00000003AYRE", "BPN_OEM_B_SITE_A" : "BPNS000000815DMY", "BPN_OEM_A_SITE_A" : "BPNS000004711DMY", "BPN_OEM_C_SITE_A" : "BPNS000001111DMY", "BPN_TRACEX_A_SITE_A" : "BPNS0000000008ZZ", - "BPN_TRACEX_B" : "BPNL00000003CNKC", - "BPN_DISMANTLER" : "BPNL00000003B6LU", - "BPN_TRACEX_A" : "BPNL00000003CML1", + "BPN_TRACEX_B" : "BPNL00000003AYRE", + "BPN_DISMANTLER" : "BPNL00000003AYRE", + "BPN_TRACEX_A" : "BPNL00000003AYRE", "BPN_TRACEX_B_SITE_A" : "BPNS00000008BDFH", - "BPN_TIER_A" : "BPNL00000003B2OM", - "BPN_TIER_C" : "BPNL00000003CSGV", - "BPN_FARM_A" : "BPNL00000003CSGV", - "BPN_TIER_B" : "BPNL00000003B5MJ", - "BPN_SUB_TIER_B" : "BPNL00000003AXS3", - "BPN_SUB_TIER_A" : "BPNL00000003B3NX", - "BPN_SUB_TIER_C" : "BPNL00000000BJTL", + "BPN_TIER_A" : "BPNL00000003AYRE", + "BPN_TIER_C" : "BPNL00000003AYRE", + "BPN_FARM_A" : "BPNL00000003AYRE", + "BPN_TIER_B" : "BPNL00000003AYRE", + "BPN_SUB_TIER_B" : "BPNL00000003AYRE", + "BPN_SUB_TIER_A" : "BPNL00000003AYRE", + "BPN_SUB_TIER_C" : "BPNL00000003AYRE", "CREATION_DATE" : "2024-04-02T08:07:49.769Z", "BPN_TIER_C_SITE_A" : "BPNS00000003CSGV", "UIDPOOL" : "[ 'urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e', 'urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b', 'urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb', 'urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c', 'urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97', 'urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9', 'urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699', 'urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7', 'urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b', 'urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77', 'urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e', 'urn:uuid:4518c080-14fb-4252-b8de-4362d615868d', 'urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc', 'urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301', 'urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323', 'urn:uuid:833c2e75-9c72-488f-8820-173cd99102b1', 'urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8', 'urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d', 'urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a', 'urn:uuid:8031a511-85d8-4568-97f3-9d155127430c', 'urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249', 'urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f', 'urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c', 'urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b', 'urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f', 'urn:uuid:44805117-33b4-4293-a6f9-99316745e77d', 'urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26', 'urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c', 'urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023', 'urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782', 'urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1', 'urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118', 'urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4', 'urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6', 'urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18', 'urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65', 'urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf', 'urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e', 'urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b', 'urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667', 'urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4', 'urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa', 'urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8', 'urn:uuid:63b334a5-3b58-4cae-a9cb-abfda4a3dd2a', 'urn:uuid:00ecef33-0b22-4f08-a758-6685b4030dcf', 'urn:uuid:6c7c6aa0-5e56-4af5-9a43-3a10148b1bee', 'urn:uuid:8d3b08c5-7238-47e2-b069-e5747b8b4f1a', 'urn:uuid:de2fb9d3-4d71-4a2b-a188-bb50be7800ef', 'urn:uuid:cfc0b821-b2d5-4f22-9b8a-a24e86324d12', 'urn:uuid:fabb63c2-89b4-41da-8236-b336c3dfc997', 'urn:uuid:7a12f29c-448e-44de-bfb6-41390a6c21fb', 'urn:uuid:d3e12092-08c2-4721-96b1-5e2d955cd847', 'urn:uuid:993e7d90-572f-4ce3-a0a4-87d4e23142a1', 'urn:uuid:ae3da951-316e-4cb7-b80b-40f03e1e5921', 'urn:uuid:1ca6df3f-f329-44a3-a6f0-39e87962e8d3', 'urn:uuid:fc3531a6-e2fc-4f00-a413-3d8325ba12bd', 'urn:uuid:e50c2fb3-84c3-4f8c-ba1c-c1fe1945ce33', 'urn:uuid:ea3b73d9-317e-4b13-82fe-2541b0bb1bd9', 'urn:uuid:8cd1c3f9-c764-4749-9ffc-9d866045902a', 'urn:uuid:404515f4-e38f-4313-8ea5-28dbe9f1d78e', 'urn:uuid:e6445d55-db0b-40ef-83cb-2ae54d0015b3', 'urn:uuid:c0efef2d-c612-4505-b282-f12edd523ee1', 'urn:uuid:12a0cc80-c8c7-4cbd-a8dd-f12858e086b7', 'urn:uuid:e1aec812-83c1-4b2d-9d40-d09a13fe37d5', 'urn:uuid:980caae1-cd49-4f96-bba7-c5cbc8a4abc5', 'urn:uuid:6d6e992d-0203-45c8-b353-15ddad184781', 'urn:uuid:f3ca42ba-a902-40cc-b96a-296d632e9d4e', 'urn:uuid:6b41b3d1-df40-4664-9aeb-ce0383066cbc', 'urn:uuid:4914af07-bff3-4932-ad1c-2d0b93dc8937', 'urn:uuid:8a56687f-d0ad-4f62-bf02-5718f1d6b91f', 'urn:uuid:819a98e0-f191-4cb8-ad43-512f7be331e3', 'urn:uuid:d12941e5-c7b1-416d-9c08-56042701a2bc', 'urn:uuid:a73d9315-9fcd-4184-a87a-f2d3d83469ef', 'urn:uuid:06be3050-3398-42d7-8b34-6e44714474df', 'urn:uuid:dfd8be9c-9786-4b73-b21a-813e58b77858', 'urn:uuid:6f5da73d-8eaa-45c2-a598-53d4d76eef00', 'urn:uuid:48a71d4e-3e84-457d-a5a4-40e11172461e', 'urn:uuid:f1261d0b-2bf0-4221-9207-501889ee27e8', 'urn:uuid:31ed8e8c-9c0e-4d5b-adbc-dacf5ce4eced', 'urn:uuid:49ac21ba-9f90-4ea0-8a9f-618c2c9d09a0', 'urn:uuid:295e3cdb-228c-4b68-944b-208fe12f364e', 'urn:uuid:7e8fb461-cedf-4a33-803e-98988edf75fa', 'urn:uuid:797f49ea-df99-4c88-bf12-21e8e247538f', 'urn:uuid:5228fa6f-508a-4530-8b82-7de3fea172d9', 'urn:uuid:a16fe36d-794f-4e52-8839-cee33d51ed52', 'urn:uuid:cb5b451d-1f2e-47a2-b023-c3422f6bb35d', 'urn:uuid:5cbb8df7-789b-4ba1-9289-b41ae57471bf', 'urn:uuid:7d4dc411-de27-4512-a8ab-c892e729c3e9', 'urn:uuid:d2f2a37b-3854-46cb-bd84-b386be10f115', 'urn:uuid:9098fd32-f4bc-4e53-8325-5c6fca518912', 'urn:uuid:050e1ee5-094c-453f-9f32-eb6c967e7d45', 'urn:uuid:3f92e710-4771-4d23-ad5a-e55d1ec241e5', 'urn:uuid:f3327b35-cabc-4b23-a578-2cce29f54e49', 'urn:uuid:1101cf44-ade0-44dd-aba3-a0f9af0f956c', 'urn:uuid:33a99e61-eb6a-4253-a3e2-a81adda038e1', 'urn:uuid:df9e24fe-841f-4850-885b-0752af7031eb', 'urn:uuid:932d0301-0edb-468b-9760-ed086058b3f9', 'urn:uuid:d22da17a-700f-41fe-9edc-a1070cdc8f8c', 'urn:uuid:adcbada5-f5d9-4d4e-8587-ac9569badcb7', 'urn:uuid:aa9bf64f-69eb-422e-8d0b-a7e76e2ecfce' ]", @@ -103,7 +103,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -116,7 +116,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -296,7 +296,7 @@ "unit" : "unit:kilogram", "value" : 0.11 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -420,7 +420,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -536,7 +536,7 @@ "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", "partTypeInformation" : { @@ -647,7 +647,7 @@ "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", "partTypeInformation" : { @@ -766,7 +766,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -779,12 +779,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", "partTypeInformation" : { @@ -915,12 +915,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "partTypeInformation" : { @@ -1006,7 +1006,7 @@ "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", "partTypeInformation" : { @@ -1117,7 +1117,7 @@ "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", "partTypeInformation" : { @@ -1236,7 +1236,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -1249,12 +1249,12 @@ "unit" : "unit:kilogram", "value" : 0.3301 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003B5MJ", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "partTypeInformation" : { @@ -1377,7 +1377,7 @@ "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "partTypeInformation" : { @@ -1508,7 +1508,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -1521,7 +1521,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -1534,12 +1534,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", "partTypeInformation" : { @@ -1578,12 +1578,12 @@ "quantityNumber" : 1580, "value" : 1580 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", "partTypeInformation" : { @@ -1714,12 +1714,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000007OR16", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", "partTypeInformation" : { @@ -1830,7 +1830,7 @@ "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", "partTypeInformation" : { @@ -1949,7 +1949,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -1962,12 +1962,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003AZQP", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", "partTypeInformation" : { @@ -2005,12 +2005,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003B5MJ", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", "partTypeInformation" : { @@ -2129,7 +2129,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -2142,7 +2142,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -2168,7 +2168,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -2181,12 +2181,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", "partTypeInformation" : { @@ -2224,7 +2224,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -2237,7 +2237,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -2250,7 +2250,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -2263,12 +2263,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003AZQP", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", "partTypeInformation" : { @@ -2387,7 +2387,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -2400,7 +2400,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -2413,12 +2413,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", "partTypeInformation" : { @@ -2525,7 +2525,7 @@ } ] }, { "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", - "bpnl" : "BPNL00000003AZQP", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", "partTypeInformation" : { @@ -2644,7 +2644,7 @@ } ] }, { "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", "partTypeInformation" : { @@ -2763,7 +2763,7 @@ } ] }, { "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", "partTypeInformation" : { @@ -2886,7 +2886,7 @@ "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", "partTypeInformation" : { @@ -2997,7 +2997,7 @@ "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", "partTypeInformation" : { @@ -3117,7 +3117,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -3135,7 +3135,7 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", "partTypeInformation" : { @@ -3242,7 +3242,7 @@ } ] }, { "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", "partTypeInformation" : { @@ -3468,12 +3468,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", "partTypeInformation" : { @@ -3592,12 +3592,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", "partTypeInformation" : { @@ -3704,7 +3704,7 @@ } ] }, { "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", - "bpnl" : "BPNL00000003AZQP", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", "partTypeInformation" : { @@ -3823,7 +3823,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CNKC", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -3939,7 +3939,7 @@ "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", "partTypeInformation" : { @@ -4050,7 +4050,7 @@ "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", "partTypeInformation" : { @@ -4181,7 +4181,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4194,7 +4194,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4220,7 +4220,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4233,7 +4233,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4246,7 +4246,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4259,12 +4259,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", "partTypeInformation" : { @@ -4375,7 +4375,7 @@ "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003CML1", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "partTypeInformation" : { @@ -4498,7 +4498,7 @@ "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "childItems" : [ ] } ], - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", "partTypeInformation" : { @@ -4629,7 +4629,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4642,7 +4642,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4655,7 +4655,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4668,7 +4668,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4681,7 +4681,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4694,7 +4694,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4707,7 +4707,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4720,7 +4720,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4733,7 +4733,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4746,7 +4746,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4759,7 +4759,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4772,7 +4772,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4785,7 +4785,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4798,7 +4798,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4811,7 +4811,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4824,7 +4824,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4837,7 +4837,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4850,7 +4850,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4863,7 +4863,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4876,12 +4876,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "partTypeInformation" : { @@ -5123,7 +5123,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -5136,7 +5136,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -5149,12 +5149,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL00000003CML1", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003CNKC", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "partTypeInformation" : { @@ -5286,7 +5286,7 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -5299,12 +5299,12 @@ "unit" : "unit:piece", "value" : 1 }, - "businessPartner" : "BPNL50096894aNXY", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "bpnl" : "BPNL00000003AZQP", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", "partTypeInformation" : { @@ -5417,29 +5417,29 @@ "useId" : false, "modelVersion" : "", "values" : { - "BPN_OEM_C" : "BPNL00000003AZQP", + "BPN_OEM_C" : "BPNL00000003AYRE", "BPN_OEM_A" : "BPNL00000003AYRE", - "BPN_OEM_B" : "BPNL00000003AVTH", - "BPN_IRS_TEST" : "BPNL00000003AWSS", - "BPN_N_TIER_A" : "BPNL00000003B0Q0", + "BPN_OEM_B" : "BPNL00000003AYRE", + "BPN_IRS_TEST" : "BPNL00000003AYRE", + "BPN_N_TIER_A" : "BPNL00000003AYRE", "BPN_NATURAL_RUBBER_SITE_A" : "BPNS000000000001", "AUTHOR" : "christian.kabelin@ventum.de", - "BPN_NATURAL_RUBBER" : "BPNL00000007OR16", + "BPN_NATURAL_RUBBER" : "BPNL00000003AYRE", "BPN_OEM_B_SITE_A" : "BPNS000000815DMY", "BPN_OEM_A_SITE_A" : "BPNS000004711DMY", "BPN_OEM_C_SITE_A" : "BPNS000001111DMY", "BPN_TRACEX_A_SITE_A" : "BPNS0000000008ZZ", - "BPN_TRACEX_B" : "BPNL00000003CNKC", - "BPN_DISMANTLER" : "BPNL00000003B6LU", - "BPN_TRACEX_A" : "BPNL00000003CML1", + "BPN_TRACEX_B" : "BPNL00000003AYRE", + "BPN_DISMANTLER" : "BPNL00000003AYRE", + "BPN_TRACEX_A" : "BPNL00000003AYRE", "BPN_TRACEX_B_SITE_A" : "BPNS00000008BDFH", - "BPN_TIER_A" : "BPNL00000003B2OM", - "BPN_TIER_C" : "BPNL00000003CSGV", - "BPN_FARM_A" : "BPNL00000003CSGV", - "BPN_TIER_B" : "BPNL00000003B5MJ", - "BPN_SUB_TIER_B" : "BPNL00000003AXS3", - "BPN_SUB_TIER_A" : "BPNL00000003B3NX", - "BPN_SUB_TIER_C" : "BPNL00000000BJTL", + "BPN_TIER_A" : "BPNL00000003AYRE", + "BPN_TIER_C" : "BPNL00000003AYRE", + "BPN_FARM_A" : "BPNL00000003AYRE", + "BPN_TIER_B" : "BPNL00000003AYRE", + "BPN_SUB_TIER_B" : "BPNL00000003AYRE", + "BPN_SUB_TIER_A" : "BPNL00000003AYRE", + "BPN_SUB_TIER_C" : "BPNL00000003AYRE", "CREATION_DATE" : "2024-04-02T08:07:49.769Z", "BPN_TIER_C_SITE_A" : "BPNS00000003CSGV", "UIDPOOL" : "[ 'urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e', 'urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b', 'urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb', 'urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c', 'urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97', 'urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9', 'urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699', 'urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7', 'urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b', 'urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77', 'urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e', 'urn:uuid:4518c080-14fb-4252-b8de-4362d615868d', 'urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc', 'urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301', 'urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323', 'urn:uuid:833c2e75-9c72-488f-8820-173cd99102b1', 'urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8', 'urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d', 'urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a', 'urn:uuid:8031a511-85d8-4568-97f3-9d155127430c', 'urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249', 'urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f', 'urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c', 'urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b', 'urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f', 'urn:uuid:44805117-33b4-4293-a6f9-99316745e77d', 'urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26', 'urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c', 'urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023', 'urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782', 'urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1', 'urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118', 'urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4', 'urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6', 'urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18', 'urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65', 'urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf', 'urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e', 'urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b', 'urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667', 'urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4', 'urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa', 'urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8', 'urn:uuid:63b334a5-3b58-4cae-a9cb-abfda4a3dd2a', 'urn:uuid:00ecef33-0b22-4f08-a758-6685b4030dcf', 'urn:uuid:6c7c6aa0-5e56-4af5-9a43-3a10148b1bee', 'urn:uuid:8d3b08c5-7238-47e2-b069-e5747b8b4f1a', 'urn:uuid:de2fb9d3-4d71-4a2b-a188-bb50be7800ef', 'urn:uuid:cfc0b821-b2d5-4f22-9b8a-a24e86324d12', 'urn:uuid:fabb63c2-89b4-41da-8236-b336c3dfc997', 'urn:uuid:7a12f29c-448e-44de-bfb6-41390a6c21fb', 'urn:uuid:d3e12092-08c2-4721-96b1-5e2d955cd847', 'urn:uuid:993e7d90-572f-4ce3-a0a4-87d4e23142a1', 'urn:uuid:ae3da951-316e-4cb7-b80b-40f03e1e5921', 'urn:uuid:1ca6df3f-f329-44a3-a6f0-39e87962e8d3', 'urn:uuid:fc3531a6-e2fc-4f00-a413-3d8325ba12bd', 'urn:uuid:e50c2fb3-84c3-4f8c-ba1c-c1fe1945ce33', 'urn:uuid:ea3b73d9-317e-4b13-82fe-2541b0bb1bd9', 'urn:uuid:8cd1c3f9-c764-4749-9ffc-9d866045902a', 'urn:uuid:404515f4-e38f-4313-8ea5-28dbe9f1d78e', 'urn:uuid:e6445d55-db0b-40ef-83cb-2ae54d0015b3', 'urn:uuid:c0efef2d-c612-4505-b282-f12edd523ee1', 'urn:uuid:12a0cc80-c8c7-4cbd-a8dd-f12858e086b7', 'urn:uuid:e1aec812-83c1-4b2d-9d40-d09a13fe37d5', 'urn:uuid:980caae1-cd49-4f96-bba7-c5cbc8a4abc5', 'urn:uuid:6d6e992d-0203-45c8-b353-15ddad184781', 'urn:uuid:f3ca42ba-a902-40cc-b96a-296d632e9d4e', 'urn:uuid:6b41b3d1-df40-4664-9aeb-ce0383066cbc', 'urn:uuid:4914af07-bff3-4932-ad1c-2d0b93dc8937', 'urn:uuid:8a56687f-d0ad-4f62-bf02-5718f1d6b91f', 'urn:uuid:819a98e0-f191-4cb8-ad43-512f7be331e3', 'urn:uuid:d12941e5-c7b1-416d-9c08-56042701a2bc', 'urn:uuid:a73d9315-9fcd-4184-a87a-f2d3d83469ef', 'urn:uuid:06be3050-3398-42d7-8b34-6e44714474df', 'urn:uuid:dfd8be9c-9786-4b73-b21a-813e58b77858', 'urn:uuid:6f5da73d-8eaa-45c2-a598-53d4d76eef00', 'urn:uuid:48a71d4e-3e84-457d-a5a4-40e11172461e', 'urn:uuid:f1261d0b-2bf0-4221-9207-501889ee27e8', 'urn:uuid:31ed8e8c-9c0e-4d5b-adbc-dacf5ce4eced', 'urn:uuid:49ac21ba-9f90-4ea0-8a9f-618c2c9d09a0', 'urn:uuid:295e3cdb-228c-4b68-944b-208fe12f364e', 'urn:uuid:7e8fb461-cedf-4a33-803e-98988edf75fa', 'urn:uuid:797f49ea-df99-4c88-bf12-21e8e247538f', 'urn:uuid:5228fa6f-508a-4530-8b82-7de3fea172d9', 'urn:uuid:a16fe36d-794f-4e52-8839-cee33d51ed52', 'urn:uuid:cb5b451d-1f2e-47a2-b023-c3422f6bb35d', 'urn:uuid:5cbb8df7-789b-4ba1-9289-b41ae57471bf', 'urn:uuid:7d4dc411-de27-4512-a8ab-c892e729c3e9', 'urn:uuid:d2f2a37b-3854-46cb-bd84-b386be10f115', 'urn:uuid:9098fd32-f4bc-4e53-8325-5c6fca518912', 'urn:uuid:050e1ee5-094c-453f-9f32-eb6c967e7d45', 'urn:uuid:3f92e710-4771-4d23-ad5a-e55d1ec241e5', 'urn:uuid:f3327b35-cabc-4b23-a578-2cce29f54e49', 'urn:uuid:1101cf44-ade0-44dd-aba3-a0f9af0f956c', 'urn:uuid:33a99e61-eb6a-4253-a3e2-a81adda038e1', 'urn:uuid:df9e24fe-841f-4850-885b-0752af7031eb', 'urn:uuid:932d0301-0edb-468b-9760-ed086058b3f9', 'urn:uuid:d22da17a-700f-41fe-9edc-a1070cdc8f8c', 'urn:uuid:adcbada5-f5d9-4d4e-8587-ac9569badcb7', 'urn:uuid:aa9bf64f-69eb-422e-8d0b-a7e76e2ecfce' ]", @@ -5501,7 +5501,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003B5MJ');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -5588,7 +5588,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '10', '0.11#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AXS3');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '10', '0.11#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -5628,7 +5628,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -5881,7 +5881,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B3NX');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B0Q0');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -5921,7 +5921,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -6126,7 +6126,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '1', '0.3301#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B3NX');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AXS3');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '1', '0.3301#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -6166,7 +6166,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -6406,7 +6406,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B5MJ');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -6453,7 +6453,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B3NX');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B0Q0');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -6493,7 +6493,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -6698,7 +6698,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '1', '0.3301#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B3NX');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AXS3');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents, '1', '0.3301#unit:kilogram');", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -6738,7 +6738,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B0Q0');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -7168,7 +7168,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003B5MJ');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -7208,7 +7208,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AXS3');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -7583,7 +7583,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -7644,7 +7644,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003CML1');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -7698,7 +7698,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CML1');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8030,7 +8030,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8216,7 +8216,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CML1');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8256,7 +8256,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8397,7 +8397,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8547,7 +8547,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CML1');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CNKC');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AZQP');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(3).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8587,7 +8587,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CSGV');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8730,7 +8730,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003B2OM');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8777,7 +8777,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003CML1');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CNKC');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -8974,7 +8974,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CML1');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, @@ -9267,7 +9267,7 @@ "count" : 1, "version" : "1.0" } ], - "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AZQP');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003CSGV');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003CML1');" ], + "code" : [ "vehicleItem.replaceSLBaPChildren(item, subparents);", "item.get('childItems').get(0).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(1).put('businessPartner', 'BPNL00000003AYRE');", "item.get('childItems').get(2).put('businessPartner', 'BPNL00000003AYRE');" ], "useId" : true, "modelVersion" : "3.0.0", "values" : { }, diff --git a/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-not-accepted-policy.json b/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-not-accepted-policy.json index 8d3ecfcdae..7a824756f1 100644 --- a/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-not-accepted-policy.json +++ b/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-not-accepted-policy.json @@ -38,7 +38,7 @@ "unit" : "unit:litre" }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] diff --git a/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-reduced.json b/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-reduced.json index a789d15a9c..4a039e6a40 100644 --- a/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-reduced.json +++ b/local/testing/testdata/CX_Testdata_v1.7.0_PartInstance-reduced.json @@ -151,7 +151,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -161,7 +161,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -171,7 +171,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -181,7 +181,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -191,7 +191,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -201,7 +201,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -211,7 +211,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -221,7 +221,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -231,7 +231,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -241,7 +241,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -251,7 +251,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -261,7 +261,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -271,7 +271,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -281,7 +281,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -291,7 +291,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -301,7 +301,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -311,7 +311,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -321,7 +321,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -331,7 +331,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -341,7 +341,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -351,7 +351,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -361,7 +361,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -371,7 +371,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -381,7 +381,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -391,7 +391,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -401,7 +401,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -411,7 +411,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -421,7 +421,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -431,7 +431,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -441,7 +441,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -451,7 +451,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -461,16 +461,16 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:4509ea7c-c8d2-41a1-83ca-c214ee34af6c", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "OMBXAFHRPALTYNHWL", @@ -512,7 +512,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -554,7 +554,7 @@ } ] }, { "catenaXId" : "urn:uuid:97eb9ea6-7e66-4ad8-aefe-6ed8aa78ccce", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "148382", "secondaryMaterialContent" : [ { @@ -622,7 +622,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-493449209370619805049795", @@ -658,7 +658,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:97eb9ea6-7e66-4ad8-aefe-6ed8aa78ccce", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -674,7 +674,7 @@ "partDescription" : "Catalysator", "partClassification" : [ { "value" : "Catalysator", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Catalysator" } @@ -688,11 +688,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -704,13 +704,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:49a3aa86-f33d-42ae-bcc0-4a0aaaffef15", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "337457", "secondaryMaterialContent" : [ { @@ -778,7 +778,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-327025290928952735328513", @@ -814,12 +814,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:49a3aa86-f33d-42ae-bcc0-4a0aaaffef15", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -849,7 +849,7 @@ "partDescription" : "Door front-left", "partClassification" : [ { "value" : "Door front-left", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-left" } @@ -863,11 +863,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -897,7 +897,7 @@ } } ], "catenaXId" : "urn:uuid:fc9a079f-1b55-4ccc-8649-e188f899bf39", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "348770", "secondaryMaterialContent" : [ { @@ -965,7 +965,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-097885571011173114989419", @@ -995,7 +995,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:fc9a079f-1b55-4ccc-8649-e188f899bf39", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -1011,7 +1011,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -1025,11 +1025,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -1041,13 +1041,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:3cf1da08-8d3c-4ed5-83f6-387ce60fe434", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "172077", "secondaryMaterialContent" : [ { @@ -1115,7 +1115,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-668160956511628927788169", @@ -1151,12 +1151,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:3cf1da08-8d3c-4ed5-83f6-387ce60fe434", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -1186,7 +1186,7 @@ "partDescription" : "Door front-right", "partClassification" : [ { "value" : "Door front-right", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-right" } @@ -1200,11 +1200,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -1234,7 +1234,7 @@ } } ], "catenaXId" : "urn:uuid:c23d0933-a59f-430f-b573-a740d12d8518", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "781339", "secondaryMaterialContent" : [ { @@ -1302,7 +1302,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-876422352985128544153401", @@ -1332,7 +1332,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:c23d0933-a59f-430f-b573-a740d12d8518", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -1348,7 +1348,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -1362,15 +1362,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:ed8058b5-4a0d-4a34-ab15-b43701a6576f", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "993286", "secondaryMaterialContent" : [ { @@ -1438,7 +1438,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-039816610690303658688033", @@ -1468,7 +1468,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:ed8058b5-4a0d-4a34-ab15-b43701a6576f", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -1484,7 +1484,7 @@ "partDescription" : "Door rear-left", "partClassification" : [ { "value" : "Door rear-left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door rear-left" } @@ -1498,15 +1498,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:0304bafc-0f7d-4c7d-9cdc-e971622da1c2", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "126619", "secondaryMaterialContent" : [ { @@ -1574,7 +1574,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-894646471997623608668503", @@ -1610,7 +1610,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:0304bafc-0f7d-4c7d-9cdc-e971622da1c2", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -1626,7 +1626,7 @@ "partDescription" : "Door rear-right", "partClassification" : [ { "value" : "Door rear-right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door rear-right" } @@ -1640,15 +1640,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:1fda2723-2407-4db9-9be6-b68faec69632", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "76387", "secondaryMaterialContent" : [ { @@ -1716,7 +1716,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-680682750757981194272345", @@ -1752,7 +1752,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:1fda2723-2407-4db9-9be6-b68faec69632", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -1768,7 +1768,7 @@ "partDescription" : "Engine hood", "partClassification" : [ { "value" : "Engine hood", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Engine hood" } @@ -1782,15 +1782,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:8c162add-d234-4fa2-9bd7-00df2929f3f2", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "565312", "secondaryMaterialContent" : [ { @@ -1858,7 +1858,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-934857261320131241032781", @@ -1888,7 +1888,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:8c162add-d234-4fa2-9bd7-00df2929f3f2", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -1904,7 +1904,7 @@ "partDescription" : "Tailgate", "partClassification" : [ { "value" : "Tailgate", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Tailgate" } @@ -1918,15 +1918,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:d6693683-a34c-41d6-a188-a2ff2cc8b3df", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "959266", "secondaryMaterialContent" : [ { @@ -1994,7 +1994,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-924065225449952368843131", @@ -2024,7 +2024,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:d6693683-a34c-41d6-a188-a2ff2cc8b3df", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -2040,7 +2040,7 @@ "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Fender right" } @@ -2054,15 +2054,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:4fa6f679-381c-4adb-a90b-f78dec9b3ad9", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "909033", "secondaryMaterialContent" : [ { @@ -2130,7 +2130,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-670429441778523841636333", @@ -2160,7 +2160,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4fa6f679-381c-4adb-a90b-f78dec9b3ad9", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -2176,7 +2176,7 @@ "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Fender right" } @@ -2190,15 +2190,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:ecfab295-a197-425e-9696-f64736d1b841", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "689401", "secondaryMaterialContent" : [ { @@ -2266,7 +2266,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-056246684736756636587831", @@ -2296,7 +2296,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:ecfab295-a197-425e-9696-f64736d1b841", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -2312,7 +2312,7 @@ "partDescription" : "Bumper front", "partClassification" : [ { "value" : "Bumper front", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Bumper front" } @@ -2326,15 +2326,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:14652c31-0a8b-4d15-9e49-a2088fa3034c", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "530617", "secondaryMaterialContent" : [ { @@ -2402,7 +2402,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-758047050105889728301858", @@ -2432,7 +2432,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:14652c31-0a8b-4d15-9e49-a2088fa3034c", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -2448,7 +2448,7 @@ "partDescription" : "Bumper rear", "partClassification" : [ { "value" : "Bumper rear", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Bumper rear" } @@ -2462,15 +2462,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:3f4da38c-d1d0-4324-bda8-4a48fffef019", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "939309", "secondaryMaterialContent" : [ { @@ -2538,7 +2538,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-074091533383372068639917", @@ -2568,7 +2568,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:3f4da38c-d1d0-4324-bda8-4a48fffef019", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -2584,7 +2584,7 @@ "partDescription" : "Exterior mirror left", "partClassification" : [ { "value" : "Exterior mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Exterior mirror left" } @@ -2598,15 +2598,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:dffb8d23-de65-4f41-a5ab-6ebec31fe1f5", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "344778", "secondaryMaterialContent" : [ { @@ -2674,7 +2674,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-686400919210237456571680", @@ -2704,7 +2704,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:dffb8d23-de65-4f41-a5ab-6ebec31fe1f5", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -2720,7 +2720,7 @@ "partDescription" : "Exterior mirror right", "partClassification" : [ { "value" : "Exterior mirror right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Exterior mirror right" } @@ -2734,15 +2734,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:993a9483-c1b1-465f-b233-5c23e3f91330", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "175492", "secondaryMaterialContent" : [ { @@ -2810,7 +2810,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-115457337374709520654084", @@ -2840,7 +2840,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:993a9483-c1b1-465f-b233-5c23e3f91330", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -2856,7 +2856,7 @@ "partDescription" : "Tailer coupling", "partClassification" : [ { "value" : "Tailer coupling", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Tailer coupling" } @@ -2870,15 +2870,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:f26ae399-716a-449b-95ec-a881e884033d", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "119620", "secondaryMaterialContent" : [ { @@ -2946,7 +2946,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-415656916336169550418363", @@ -2976,7 +2976,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:f26ae399-716a-449b-95ec-a881e884033d", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -2992,7 +2992,7 @@ "partDescription" : "Dashboard", "partClassification" : [ { "value" : "Dashboard", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Dashboard" } @@ -3006,15 +3006,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:d126f8b9-8b46-44a5-b572-48cb6851fe36", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "335610", "secondaryMaterialContent" : [ { @@ -3082,7 +3082,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-291470718914221667219600", @@ -3112,7 +3112,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:d126f8b9-8b46-44a5-b572-48cb6851fe36", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -3128,7 +3128,7 @@ "partDescription" : "Steering wheel", "partClassification" : [ { "value" : "Steering wheel", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Steering wheel" } @@ -3142,15 +3142,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:a469ace8-b3be-4b3a-aeb8-4a613b4f86e1", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "995307", "secondaryMaterialContent" : [ { @@ -3218,7 +3218,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-251259634241714383121498", @@ -3248,7 +3248,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:a469ace8-b3be-4b3a-aeb8-4a613b4f86e1", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -3264,7 +3264,7 @@ "partDescription" : "Indicator left", "partClassification" : [ { "value" : "Indicator left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Indicator left" } @@ -3278,15 +3278,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:4b50ebde-bd4f-4a83-95ad-a9718661d842", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "230843", "secondaryMaterialContent" : [ { @@ -3354,7 +3354,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-008316575783526155708166", @@ -3384,7 +3384,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4b50ebde-bd4f-4a83-95ad-a9718661d842", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -3400,7 +3400,7 @@ "partDescription" : "Indicator right", "partClassification" : [ { "value" : "Indicator right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Indicator right" } @@ -3414,15 +3414,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:bf247ecd-7b84-4304-9787-7b90d71b7200", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "56713", "secondaryMaterialContent" : [ { @@ -3490,7 +3490,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-103083610671605670348967", @@ -3520,7 +3520,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:bf247ecd-7b84-4304-9787-7b90d71b7200", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -3536,7 +3536,7 @@ "partDescription" : "Led headlight", "partClassification" : [ { "value" : "Led headlight", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Led headlight" } @@ -3550,15 +3550,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:29296af3-d9c0-4302-a603-69a26a652aab", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "775566", "secondaryMaterialContent" : [ { @@ -3626,7 +3626,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-079270343902374185653315", @@ -3656,7 +3656,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:29296af3-d9c0-4302-a603-69a26a652aab", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -3672,7 +3672,7 @@ "partDescription" : "Starter motor", "partClassification" : [ { "value" : "Starter motor", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Starter motor" } @@ -3686,15 +3686,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:8d691236-7941-48ce-b42f-624965dfbf9e", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "776777", "secondaryMaterialContent" : [ { @@ -3762,7 +3762,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-241841413225071875956101", @@ -3792,7 +3792,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:8d691236-7941-48ce-b42f-624965dfbf9e", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -3808,7 +3808,7 @@ "partDescription" : "Alternator", "partClassification" : [ { "value" : "Alternator", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Alternator" } @@ -3822,15 +3822,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:3817adc7-4055-4f45-aa69-dcf9a90c3048", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "40646", "secondaryMaterialContent" : [ { @@ -3898,7 +3898,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-365771955451487745212274", @@ -3928,7 +3928,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:3817adc7-4055-4f45-aa69-dcf9a90c3048", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -3944,7 +3944,7 @@ "partDescription" : "Air conditioning compressor", "partClassification" : [ { "value" : "Air conditioning compressor", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Air conditioning compressor" } @@ -3958,15 +3958,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:061331c7-b4c5-4dd3-ba4b-ebc91bdf0e20", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "129974", "secondaryMaterialContent" : [ { @@ -4034,7 +4034,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-232015686968696578342662", @@ -4064,7 +4064,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:061331c7-b4c5-4dd3-ba4b-ebc91bdf0e20", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -4080,7 +4080,7 @@ "partDescription" : "Taillight rear", "partClassification" : [ { "value" : "Taillight rear", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Taillight rear" } @@ -4094,15 +4094,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:09fabc4e-f4c7-4e19-954b-e8d9ec100931", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "281755", "secondaryMaterialContent" : [ { @@ -4170,7 +4170,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-431754212387670002323951", @@ -4200,7 +4200,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:09fabc4e-f4c7-4e19-954b-e8d9ec100931", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -4216,7 +4216,7 @@ "partDescription" : "Taillight front", "partClassification" : [ { "value" : "Taillight front", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Taillight front" } @@ -4230,15 +4230,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:70d3d464-69bb-4a79-8716-f6cf95a047d8", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "323216", "secondaryMaterialContent" : [ { @@ -4306,7 +4306,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-520287736176170220565530", @@ -4336,7 +4336,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:70d3d464-69bb-4a79-8716-f6cf95a047d8", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -4352,7 +4352,7 @@ "partDescription" : "Axle part front", "partClassification" : [ { "value" : "Axle part front", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Axle part front" } @@ -4366,15 +4366,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:9e44ca64-5a13-4c61-8310-0a03d903b329", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "313504", "secondaryMaterialContent" : [ { @@ -4442,7 +4442,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-042598580710906936503449", @@ -4472,7 +4472,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:9e44ca64-5a13-4c61-8310-0a03d903b329", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -4488,7 +4488,7 @@ "partDescription" : "Axle part rear", "partClassification" : [ { "value" : "Axle part rear", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Axle part rear" } @@ -4502,15 +4502,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:5df05778-5e55-4e95-8a5b-0d93314a795e", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "789898", "secondaryMaterialContent" : [ { @@ -4578,7 +4578,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-348675496564273846259314", @@ -4608,7 +4608,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:5df05778-5e55-4e95-8a5b-0d93314a795e", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -4624,7 +4624,7 @@ "partDescription" : "Chassis", "partClassification" : [ { "value" : "Chassis", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Chassis" } @@ -4638,15 +4638,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:63b2c09b-89ca-4d8a-8416-761e77301c7e", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "75490", "secondaryMaterialContent" : [ { @@ -4714,7 +4714,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-457717767855625324749086", @@ -4744,7 +4744,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:63b2c09b-89ca-4d8a-8416-761e77301c7e", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -4760,7 +4760,7 @@ "partDescription" : "Rims", "partClassification" : [ { "value" : "Rims", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Rims" } @@ -4774,15 +4774,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:a7437425-c7bb-44ae-8cea-cf56592171de", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "69517", "secondaryMaterialContent" : [ { @@ -4850,7 +4850,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-192867569752560272342863", @@ -4880,7 +4880,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:a7437425-c7bb-44ae-8cea-cf56592171de", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -4896,7 +4896,7 @@ "partDescription" : "Tires", "partClassification" : [ { "value" : "Tires", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Tires" } @@ -4910,11 +4910,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -4969,7 +4969,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -4979,13 +4979,13 @@ "value" : 0.2341 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:aeada37a-a1d8-4535-a476-5f5e1142e3fe", - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "704584", "secondaryMaterialContent" : [ { @@ -5053,7 +5053,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-911298432628361791379708", @@ -5089,12 +5089,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:aeada37a-a1d8-4535-a476-5f5e1142e3fe", - "manufacturerId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -5113,7 +5113,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -5132,7 +5132,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -5206,10 +5206,10 @@ "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "manufacturerId" : "BPNL00000003B2OM" + "manufacturerId" : "BPNL00000003AYRE" }, "sparePartSupplier" : [ { - "supplierId" : "BPNL1234567890ZZ", + "supplierId" : "BPNL00000003AYRE", "supplierContact" : { "website" : "https://www.samsung.com", "phoneNumber" : "+49 89 1234567890", @@ -5281,7 +5281,7 @@ "partDescription" : "Transmission", "partClassification" : [ { "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Transmission" } @@ -5295,11 +5295,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B2OM" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -5328,7 +5328,7 @@ } ] } ], "catenaXId" : "urn:uuid:6c49a74d-1a91-4d46-a261-46b5311b0fee", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "259792", "secondaryMaterialContent" : [ { @@ -5396,12 +5396,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:6c49a74d-1a91-4d46-a261-46b5311b0fee", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -5437,7 +5437,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -5451,11 +5451,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -5467,13 +5467,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:4c9bbfb1-414c-4c55-b197-3b3958d73ea1", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "305238", "secondaryMaterialContent" : [ { @@ -5541,7 +5541,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-999668972150309987656972", @@ -5571,12 +5571,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4c9bbfb1-414c-4c55-b197-3b3958d73ea1", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -5606,7 +5606,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -5620,11 +5620,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -5653,7 +5653,7 @@ } ] } ], "catenaXId" : "urn:uuid:fbbb6872-d76b-411f-84a5-fb0a1d78b40d", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "250354", "secondaryMaterialContent" : [ { @@ -5721,12 +5721,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:fbbb6872-d76b-411f-84a5-fb0a1d78b40d", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -5762,7 +5762,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -5776,11 +5776,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -5800,7 +5800,7 @@ } ] } ], "catenaXId" : "urn:uuid:d78045d5-4ee7-4980-b24c-31dafeb6f54f", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "761723", "secondaryMaterialContent" : [ { @@ -5868,12 +5868,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:d78045d5-4ee7-4980-b24c-31dafeb6f54f", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -5909,7 +5909,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -5923,11 +5923,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -5952,7 +5952,7 @@ "value" : 0.3301 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -5962,7 +5962,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -5972,13 +5972,13 @@ "value" : 0.2001 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:54d9154a-01a4-47f1-a798-57d86a5744fa", - "bpnl" : "BPNL00000003B5MJ", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "804379", "secondaryMaterialContent" : [ { @@ -6046,7 +6046,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-153523539674563852516476", @@ -6076,12 +6076,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:54d9154a-01a4-47f1-a798-57d86a5744fa", - "manufacturerId" : "BPNL00000003B5MJ", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -6100,7 +6100,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -6119,7 +6119,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -6149,7 +6149,7 @@ "partDescription" : "ECU", "partClassification" : [ { "value" : "ECU", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "ECU" } @@ -6163,11 +6163,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B5MJ" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6196,7 +6196,7 @@ } ] } ], "catenaXId" : "urn:uuid:91babdbe-859f-46c8-8be4-8894cd1504e4", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "45934", "secondaryMaterialContent" : [ { @@ -6264,12 +6264,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:91babdbe-859f-46c8-8be4-8894cd1504e4", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -6305,7 +6305,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -6319,11 +6319,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -6335,13 +6335,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:81dbecc3-aa15-4da6-9f8c-d48638e333c2", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "86493", "secondaryMaterialContent" : [ { @@ -6409,7 +6409,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-102254249658793721413936", @@ -6439,12 +6439,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:81dbecc3-aa15-4da6-9f8c-d48638e333c2", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -6474,7 +6474,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -6488,11 +6488,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6521,7 +6521,7 @@ } ] } ], "catenaXId" : "urn:uuid:8e35cbe0-57ac-49e7-b87a-1a9bdef178e0", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "661245", "secondaryMaterialContent" : [ { @@ -6589,12 +6589,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:8e35cbe0-57ac-49e7-b87a-1a9bdef178e0", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -6630,7 +6630,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -6644,11 +6644,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6677,7 +6677,7 @@ } ] } ], "catenaXId" : "urn:uuid:71e0c1d1-7628-4168-935a-6ea51e4947bb", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "802021", "secondaryMaterialContent" : [ { @@ -6745,7 +6745,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-054992219140034884643989", @@ -6778,7 +6778,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:71e0c1d1-7628-4168-935a-6ea51e4947bb", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -6794,7 +6794,7 @@ "partDescription" : "Engineering Plastics", "partClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Engineering Plastics" } @@ -6808,11 +6808,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -6824,7 +6824,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -6834,7 +6834,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -6844,7 +6844,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -6854,7 +6854,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -6864,7 +6864,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -6874,16 +6874,16 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:10bedf9c-b2e2-4cd8-bb55-290107cceb09", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-847552803735638680835720", @@ -6968,12 +6968,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:10bedf9c-b2e2-4cd8-bb55-290107cceb09", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -6992,7 +6992,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7011,7 +7011,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7030,7 +7030,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7049,7 +7049,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7068,7 +7068,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7113,7 +7113,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2023-05-23", @@ -7205,7 +7205,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -7257,10 +7257,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -7277,7 +7277,7 @@ "partDescription" : "Battery", "partClassification" : [ { "value" : "Battery", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Battery" } @@ -7633,11 +7633,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", @@ -7693,7 +7693,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -7799,7 +7799,7 @@ } ] } ], "catenaXId" : "urn:uuid:36bc49b3-5886-43eb-b1a8-1b94f3ddba34", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "713183", "secondaryMaterialContent" : [ { @@ -7867,7 +7867,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-978770228248691851867202", @@ -7897,12 +7897,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:36bc49b3-5886-43eb-b1a8-1b94f3ddba34", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7921,7 +7921,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7940,7 +7940,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7959,7 +7959,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7978,7 +7978,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -7997,7 +7997,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -8016,7 +8016,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -8035,7 +8035,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -8054,7 +8054,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -8073,7 +8073,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -8092,7 +8092,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -8373,7 +8373,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2023-04-20", @@ -8465,7 +8465,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -8517,10 +8517,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -8545,7 +8545,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -8559,11 +8559,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -9122,7 +9122,7 @@ } ] } ], "catenaXId" : "urn:uuid:dc237d95-4ef1-40fe-a960-1ec9b48b2da9", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "897849", "secondaryMaterialContent" : [ { @@ -9190,12 +9190,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:dc237d95-4ef1-40fe-a960-1ec9b48b2da9", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -9231,7 +9231,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -9245,11 +9245,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -9261,7 +9261,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -9711,7 +9711,7 @@ } ] } ], "catenaXId" : "urn:uuid:4b68122e-d969-4519-a078-2f997c00b0f7", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "114931", "secondaryMaterialContent" : [ { @@ -9779,12 +9779,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4b68122e-d969-4519-a078-2f997c00b0f7", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -9820,7 +9820,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -9834,11 +9834,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -9850,7 +9850,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -10293,7 +10293,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -10736,7 +10736,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -11179,7 +11179,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -11622,7 +11622,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -12065,7 +12065,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -12515,7 +12515,7 @@ } ] } ], "catenaXId" : "urn:uuid:75737233-8288-4b11-8d81-d58efb57b0c0", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "818943", "secondaryMaterialContent" : [ { @@ -12583,12 +12583,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:75737233-8288-4b11-8d81-d58efb57b0c0", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -12624,7 +12624,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -12638,11 +12638,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -12654,7 +12654,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -13097,7 +13097,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -13540,7 +13540,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -14016,7 +14016,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -14122,7 +14122,7 @@ } ] } ], "catenaXId" : "urn:uuid:69c58864-983d-4779-bf3b-446f4c41d9b0", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "331100", "secondaryMaterialContent" : [ { @@ -14190,7 +14190,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-971359344605505922575650", @@ -14220,12 +14220,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:69c58864-983d-4779-bf3b-446f4c41d9b0", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14244,7 +14244,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14263,7 +14263,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14282,7 +14282,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14301,7 +14301,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14320,7 +14320,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14339,7 +14339,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14358,7 +14358,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14377,7 +14377,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14396,7 +14396,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14415,7 +14415,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -14696,7 +14696,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2022-11-12", @@ -14788,7 +14788,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -14840,10 +14840,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -14868,7 +14868,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -14882,11 +14882,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -14898,7 +14898,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -15341,7 +15341,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -15784,7 +15784,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -16227,7 +16227,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -16670,7 +16670,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -17113,7 +17113,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -17556,7 +17556,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -17999,7 +17999,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -18442,7 +18442,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -18885,7 +18885,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -19361,7 +19361,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -19467,7 +19467,7 @@ } ] } ], "catenaXId" : "urn:uuid:5850376b-b144-4987-ba17-fe66e8a41b96", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "41501", "secondaryMaterialContent" : [ { @@ -19535,7 +19535,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-582388068398992679509406", @@ -19565,12 +19565,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:5850376b-b144-4987-ba17-fe66e8a41b96", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19589,7 +19589,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19608,7 +19608,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19627,7 +19627,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19646,7 +19646,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19665,7 +19665,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19684,7 +19684,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19703,7 +19703,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19722,7 +19722,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19741,7 +19741,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -19760,7 +19760,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -20041,7 +20041,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2022-07-30", @@ -20133,7 +20133,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -20185,10 +20185,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -20213,7 +20213,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -20227,11 +20227,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -21010,7 +21010,7 @@ } ] } ], "catenaXId" : "urn:uuid:39145981-f1fb-4233-98a8-5ff564674501", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "355269", "secondaryMaterialContent" : [ { @@ -21078,12 +21078,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:39145981-f1fb-4233-98a8-5ff564674501", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -21119,7 +21119,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -21133,11 +21133,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -21149,7 +21149,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -21592,7 +21592,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -22035,7 +22035,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -22478,7 +22478,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -22921,7 +22921,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -23364,7 +23364,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -23807,7 +23807,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -24250,7 +24250,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -24693,7 +24693,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -25136,7 +25136,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -25612,7 +25612,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -25718,7 +25718,7 @@ } ] } ], "catenaXId" : "urn:uuid:bcdf0b54-6249-4eab-b00f-0fc0fd35002f", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "874793", "secondaryMaterialContent" : [ { @@ -25786,7 +25786,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-761674682118911241923635", @@ -25816,12 +25816,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:bcdf0b54-6249-4eab-b00f-0fc0fd35002f", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25840,7 +25840,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25859,7 +25859,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25878,7 +25878,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25897,7 +25897,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25916,7 +25916,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25935,7 +25935,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25954,7 +25954,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25973,7 +25973,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -25992,7 +25992,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -26011,7 +26011,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -26292,7 +26292,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2022-06-28", @@ -26384,7 +26384,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -26436,10 +26436,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -26464,7 +26464,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -26478,11 +26478,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -26494,7 +26494,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -26937,7 +26937,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -27380,7 +27380,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -27823,7 +27823,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -28266,7 +28266,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -28709,7 +28709,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -29152,7 +29152,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -29595,7 +29595,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -30038,7 +30038,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -30481,7 +30481,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -30957,7 +30957,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -31063,7 +31063,7 @@ } ] } ], "catenaXId" : "urn:uuid:10e336f2-8be9-41a5-996d-6889acd22bc5", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "235877", "secondaryMaterialContent" : [ { @@ -31131,7 +31131,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-295152261898828237456747", @@ -31161,12 +31161,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:10e336f2-8be9-41a5-996d-6889acd22bc5", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31185,7 +31185,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31204,7 +31204,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31223,7 +31223,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31242,7 +31242,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31261,7 +31261,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31280,7 +31280,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31299,7 +31299,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31318,7 +31318,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31337,7 +31337,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31356,7 +31356,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -31637,7 +31637,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2024-02-01", @@ -31729,7 +31729,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -31781,10 +31781,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AVTH" + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -31809,7 +31809,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -31823,11 +31823,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -31839,7 +31839,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -32282,7 +32282,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -32725,7 +32725,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -33168,7 +33168,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -33611,7 +33611,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -34054,7 +34054,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -34497,7 +34497,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -34940,7 +34940,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -35383,7 +35383,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -35826,7 +35826,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -36302,7 +36302,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -36408,7 +36408,7 @@ } ] } ], "catenaXId" : "urn:uuid:d31645b6-6ff9-4813-a5a1-448e2b992f9e", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "572616", "secondaryMaterialContent" : [ { @@ -36476,7 +36476,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-518242042509779433077660", @@ -36506,12 +36506,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:d31645b6-6ff9-4813-a5a1-448e2b992f9e", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36530,7 +36530,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36549,7 +36549,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36568,7 +36568,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36587,7 +36587,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36606,7 +36606,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36625,7 +36625,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36644,7 +36644,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36663,7 +36663,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36682,7 +36682,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36701,7 +36701,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -36982,7 +36982,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2022-09-12", @@ -37074,7 +37074,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -37126,10 +37126,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -37154,7 +37154,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -37168,11 +37168,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -37184,7 +37184,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -37627,7 +37627,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -38070,7 +38070,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -38513,7 +38513,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -38956,7 +38956,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -39399,7 +39399,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -39842,7 +39842,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -40285,7 +40285,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -40728,7 +40728,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -41171,7 +41171,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -41727,7 +41727,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -41737,7 +41737,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -42007,7 +42007,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -42017,7 +42017,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -42270,13 +42270,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:97088f29-ff7e-4505-9bb9-47ae906a2b55", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "413840", "secondaryMaterialContent" : [ { @@ -42344,7 +42344,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-823300741559683326790046", @@ -42380,12 +42380,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:97088f29-ff7e-4505-9bb9-47ae906a2b55", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -42415,7 +42415,7 @@ "partDescription" : "Door front-left", "partClassification" : [ { "value" : "Door front-left", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-left" } @@ -42429,11 +42429,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -42463,7 +42463,7 @@ } } ], "catenaXId" : "urn:uuid:57be2fd7-501e-4fea-9f3b-a6c746c3579d", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "328039", "secondaryMaterialContent" : [ { @@ -42531,7 +42531,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-220662368835146822343685", @@ -42561,7 +42561,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:57be2fd7-501e-4fea-9f3b-a6c746c3579d", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -42577,7 +42577,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -42591,11 +42591,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -42607,13 +42607,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:5d1a407d-bfe4-44ee-8fdc-c935dd3ebb1a", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "296232", "secondaryMaterialContent" : [ { @@ -42681,7 +42681,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-340930986350446845999382", @@ -42717,12 +42717,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:5d1a407d-bfe4-44ee-8fdc-c935dd3ebb1a", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -42752,7 +42752,7 @@ "partDescription" : "Door front-right", "partClassification" : [ { "value" : "Door front-right", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-right" } @@ -42766,11 +42766,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -42800,7 +42800,7 @@ } } ], "catenaXId" : "urn:uuid:323449ae-83b6-4d84-8365-6d739f67f2d7", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "736819", "secondaryMaterialContent" : [ { @@ -42868,7 +42868,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-494515703493405923787086", @@ -42898,7 +42898,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:323449ae-83b6-4d84-8365-6d739f67f2d7", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -42914,7 +42914,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -42928,11 +42928,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:e931a1f3-1dbf-4935-939c-14e35308ef0e", @@ -46535,7 +46535,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -46545,13 +46545,13 @@ "value" : 0.2341 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:4b4d41c3-7a7c-4544-b718-8167a70f517d", - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "330253", "secondaryMaterialContent" : [ { @@ -46619,7 +46619,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-782126079296549074277621", @@ -46655,12 +46655,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4b4d41c3-7a7c-4544-b718-8167a70f517d", - "manufacturerId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -46679,7 +46679,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -46698,7 +46698,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -46772,10 +46772,10 @@ "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "manufacturerId" : "BPNL00000003B2OM" + "manufacturerId" : "BPNL00000003AYRE" }, "sparePartSupplier" : [ { - "supplierId" : "BPNL1234567890ZZ", + "supplierId" : "BPNL00000003AYRE", "supplierContact" : { "website" : "https://www.samsung.com", "phoneNumber" : "+49 89 1234567890", @@ -46847,7 +46847,7 @@ "partDescription" : "Transmission", "partClassification" : [ { "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Transmission" } @@ -46861,11 +46861,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B2OM" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -46894,7 +46894,7 @@ } ] } ], "catenaXId" : "urn:uuid:18ed69f6-5f4a-44e2-9ff1-9bf881bbf787", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "932507", "secondaryMaterialContent" : [ { @@ -46962,12 +46962,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:18ed69f6-5f4a-44e2-9ff1-9bf881bbf787", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -47003,7 +47003,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -47017,11 +47017,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -47033,13 +47033,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:5f7d2122-5f8e-439b-a27f-52ae1fb02b13", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "505353", "secondaryMaterialContent" : [ { @@ -47107,7 +47107,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-051226100873230933253215", @@ -47137,12 +47137,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:5f7d2122-5f8e-439b-a27f-52ae1fb02b13", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -47172,7 +47172,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -47186,11 +47186,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -47219,7 +47219,7 @@ } ] } ], "catenaXId" : "urn:uuid:a3627b44-87da-47ba-b853-1ff0310a209a", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "275378", "secondaryMaterialContent" : [ { @@ -47287,12 +47287,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:a3627b44-87da-47ba-b853-1ff0310a209a", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -47328,7 +47328,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -47342,11 +47342,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -47366,7 +47366,7 @@ } ] } ], "catenaXId" : "urn:uuid:c1b9e521-b7a0-4266-8a57-8f8751222f4c", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "30753", "secondaryMaterialContent" : [ { @@ -47434,12 +47434,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:c1b9e521-b7a0-4266-8a57-8f8751222f4c", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -47475,7 +47475,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -47489,11 +47489,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -47518,7 +47518,7 @@ "value" : 0.3301 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -47528,7 +47528,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -47538,13 +47538,13 @@ "value" : 0.2001 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:76b8cc82-e9cf-43e1-a4de-9ed4ef34cfb8", - "bpnl" : "BPNL00000003B5MJ", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "274357", "secondaryMaterialContent" : [ { @@ -47612,7 +47612,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-222072688474649573193516", @@ -47642,12 +47642,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:76b8cc82-e9cf-43e1-a4de-9ed4ef34cfb8", - "manufacturerId" : "BPNL00000003B5MJ", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -47666,7 +47666,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -47685,7 +47685,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -47715,7 +47715,7 @@ "partDescription" : "ECU", "partClassification" : [ { "value" : "ECU", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "ECU" } @@ -47729,11 +47729,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B5MJ" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -47762,7 +47762,7 @@ } ] } ], "catenaXId" : "urn:uuid:c8d8c1ee-e423-4ec2-b21d-8920577f9bd0", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "907241", "secondaryMaterialContent" : [ { @@ -47830,12 +47830,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:c8d8c1ee-e423-4ec2-b21d-8920577f9bd0", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -47871,7 +47871,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -47885,11 +47885,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -47901,13 +47901,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:94adc4e4-9630-4c16-8034-cc3aff864e9b", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "368883", "secondaryMaterialContent" : [ { @@ -47975,7 +47975,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-903790889815947590306422", @@ -48005,12 +48005,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:94adc4e4-9630-4c16-8034-cc3aff864e9b", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -48040,7 +48040,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -48054,11 +48054,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48087,7 +48087,7 @@ } ] } ], "catenaXId" : "urn:uuid:d0a844e3-1266-4174-b8f8-2d814ec7addc", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "585496", "secondaryMaterialContent" : [ { @@ -48155,12 +48155,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:d0a844e3-1266-4174-b8f8-2d814ec7addc", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -48196,7 +48196,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -48210,11 +48210,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48243,7 +48243,7 @@ } ] } ], "catenaXId" : "urn:uuid:2d2c445a-96eb-4c0c-8ff3-4f694cc118bd", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "410502", "secondaryMaterialContent" : [ { @@ -48311,7 +48311,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-613471296441332156188424", @@ -48344,7 +48344,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:2d2c445a-96eb-4c0c-8ff3-4f694cc118bd", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -48360,7 +48360,7 @@ "partDescription" : "Engineering Plastics", "partClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Engineering Plastics" } @@ -48374,11 +48374,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -48771,7 +48771,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -48823,9 +48823,9 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -49259,7 +49259,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -50031,7 +50031,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -50083,9 +50083,9 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -50141,7 +50141,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -50584,7 +50584,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -51027,7 +51027,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -51470,7 +51470,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -51913,7 +51913,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -52356,7 +52356,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -52799,7 +52799,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -53242,7 +53242,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -53685,7 +53685,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -54128,7 +54128,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -54604,7 +54604,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -55376,7 +55376,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -55430,7 +55430,7 @@ "operation" : { "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -55486,7 +55486,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -55929,7 +55929,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -56372,7 +56372,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -56815,7 +56815,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -57258,7 +57258,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -57701,7 +57701,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -58144,7 +58144,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -58587,7 +58587,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -59030,7 +59030,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -59473,7 +59473,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -59949,7 +59949,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -60721,7 +60721,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -60773,9 +60773,9 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -60831,7 +60831,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -61274,7 +61274,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -61717,7 +61717,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -62160,7 +62160,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -62603,7 +62603,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -63046,7 +63046,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -63489,7 +63489,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -63932,7 +63932,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -64375,7 +64375,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -64818,7 +64818,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -65294,7 +65294,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -66066,7 +66066,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -66120,7 +66120,7 @@ "operation" : { "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -66176,7 +66176,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -66619,7 +66619,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -67062,7 +67062,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -67505,7 +67505,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -67948,7 +67948,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -68391,7 +68391,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -68834,7 +68834,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -69277,7 +69277,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -69720,7 +69720,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -70163,7 +70163,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -70639,7 +70639,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -71411,7 +71411,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -71465,7 +71465,7 @@ "operation" : { "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -71521,7 +71521,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -71964,7 +71964,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -72407,7 +72407,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -72850,7 +72850,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -73293,7 +73293,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -73736,7 +73736,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -74179,7 +74179,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -74622,7 +74622,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -75065,7 +75065,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -75508,7 +75508,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -75984,7 +75984,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -76756,7 +76756,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -76866,7 +76866,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -77309,7 +77309,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -77752,7 +77752,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -78195,7 +78195,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -78638,7 +78638,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -79081,7 +79081,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -79524,7 +79524,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -79967,7 +79967,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -80410,7 +80410,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -80853,7 +80853,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -81399,7 +81399,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81409,7 +81409,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81419,7 +81419,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81429,7 +81429,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81439,7 +81439,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81449,7 +81449,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81459,7 +81459,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81469,7 +81469,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81479,7 +81479,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81489,7 +81489,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81499,7 +81499,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81509,7 +81509,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81519,7 +81519,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81529,7 +81529,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81539,7 +81539,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81549,7 +81549,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81559,7 +81559,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81569,7 +81569,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81579,7 +81579,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81589,7 +81589,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81599,7 +81599,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81609,7 +81609,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81619,7 +81619,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81629,7 +81629,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81639,7 +81639,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81649,7 +81649,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81659,7 +81659,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81669,7 +81669,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81679,7 +81679,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81689,7 +81689,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81699,7 +81699,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -81709,16 +81709,16 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:fcb541a5-0020-42f1-a9f5-9147b1ff9e3c", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "OMBWJLERHREMNAJWD", @@ -81760,7 +81760,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -81802,7 +81802,7 @@ } ] }, { "catenaXId" : "urn:uuid:183e7633-e317-4cb6-a959-a699f3a6553d", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "731622", "secondaryMaterialContent" : [ { @@ -81870,7 +81870,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-309642104681446973063028", @@ -81906,7 +81906,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:183e7633-e317-4cb6-a959-a699f3a6553d", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -81922,7 +81922,7 @@ "partDescription" : "Catalysator", "partClassification" : [ { "value" : "Catalysator", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Catalysator" } @@ -81936,11 +81936,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -81952,13 +81952,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:c2013f95-7b9e-4873-b09a-4eb8187058ec", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "339706", "secondaryMaterialContent" : [ { @@ -82026,7 +82026,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-910767698998441906429332", @@ -82062,12 +82062,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:c2013f95-7b9e-4873-b09a-4eb8187058ec", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -82097,7 +82097,7 @@ "partDescription" : "Door front-left", "partClassification" : [ { "value" : "Door front-left", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-left" } @@ -82111,11 +82111,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -82145,7 +82145,7 @@ } } ], "catenaXId" : "urn:uuid:4ef189ec-a561-4dab-9adf-7fcc8d9610c2", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "201147", "secondaryMaterialContent" : [ { @@ -82213,7 +82213,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-734483670842501536715127", @@ -82243,7 +82243,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4ef189ec-a561-4dab-9adf-7fcc8d9610c2", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -82259,7 +82259,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -82273,11 +82273,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -82289,13 +82289,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:5084a038-950a-4618-9de2-b3f811243bc4", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "515414", "secondaryMaterialContent" : [ { @@ -82363,7 +82363,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-212386579780765426144253", @@ -82399,12 +82399,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:5084a038-950a-4618-9de2-b3f811243bc4", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -82434,7 +82434,7 @@ "partDescription" : "Door front-right", "partClassification" : [ { "value" : "Door front-right", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-right" } @@ -82448,11 +82448,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -82482,7 +82482,7 @@ } } ], "catenaXId" : "urn:uuid:deca402e-1dd4-4446-997c-e01bcd0de28d", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "45913", "secondaryMaterialContent" : [ { @@ -82550,7 +82550,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-758624476996062370733666", @@ -82580,7 +82580,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:deca402e-1dd4-4446-997c-e01bcd0de28d", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -82596,7 +82596,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -82610,15 +82610,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:8a27d3a5-5054-44e4-9585-2692efc1758b", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "262627", "secondaryMaterialContent" : [ { @@ -82686,7 +82686,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-155405642411398377603084", @@ -82716,7 +82716,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:8a27d3a5-5054-44e4-9585-2692efc1758b", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -82732,7 +82732,7 @@ "partDescription" : "Door rear-left", "partClassification" : [ { "value" : "Door rear-left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door rear-left" } @@ -82746,15 +82746,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:8ee86d1d-94c5-40ee-957a-06fbe4666720", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "644875", "secondaryMaterialContent" : [ { @@ -82822,7 +82822,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-444376312643332444951346", @@ -82858,7 +82858,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:8ee86d1d-94c5-40ee-957a-06fbe4666720", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -82874,7 +82874,7 @@ "partDescription" : "Door rear-right", "partClassification" : [ { "value" : "Door rear-right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door rear-right" } @@ -82888,15 +82888,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:58d86db2-a9a9-4748-ba8e-b8600dd90650", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "911611", "secondaryMaterialContent" : [ { @@ -82964,7 +82964,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-151215949646959291174504", @@ -83000,7 +83000,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:58d86db2-a9a9-4748-ba8e-b8600dd90650", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -83016,7 +83016,7 @@ "partDescription" : "Engine hood", "partClassification" : [ { "value" : "Engine hood", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Engine hood" } @@ -83030,15 +83030,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:e9c26a4e-2942-448c-94c9-0ff3f401bfb2", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "451963", "secondaryMaterialContent" : [ { @@ -83106,7 +83106,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-116130722551140462689470", @@ -83136,7 +83136,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:e9c26a4e-2942-448c-94c9-0ff3f401bfb2", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -83152,7 +83152,7 @@ "partDescription" : "Tailgate", "partClassification" : [ { "value" : "Tailgate", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Tailgate" } @@ -83166,15 +83166,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:510dda1c-58fe-4e2c-9944-943b51961e8e", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "866717", "secondaryMaterialContent" : [ { @@ -83242,7 +83242,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-485845868413776375952553", @@ -83272,7 +83272,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:510dda1c-58fe-4e2c-9944-943b51961e8e", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -83288,7 +83288,7 @@ "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Fender right" } @@ -83302,15 +83302,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:516e6052-d781-4e43-97c3-bb3fb303eff0", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "488013", "secondaryMaterialContent" : [ { @@ -83378,7 +83378,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-061626082720436216125568", @@ -83408,7 +83408,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:516e6052-d781-4e43-97c3-bb3fb303eff0", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -83424,7 +83424,7 @@ "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Fender right" } @@ -83438,15 +83438,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:016dac2e-a6ac-474d-9374-aaf56906b526", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "388564", "secondaryMaterialContent" : [ { @@ -83514,7 +83514,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-234874218539491538274217", @@ -83544,7 +83544,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:016dac2e-a6ac-474d-9374-aaf56906b526", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -83560,7 +83560,7 @@ "partDescription" : "Bumper front", "partClassification" : [ { "value" : "Bumper front", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Bumper front" } @@ -83574,15 +83574,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:330c7302-209e-4d3d-9410-46548763a7a4", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "985604", "secondaryMaterialContent" : [ { @@ -83650,7 +83650,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-293489985398900613149224", @@ -83680,7 +83680,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:330c7302-209e-4d3d-9410-46548763a7a4", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -83696,7 +83696,7 @@ "partDescription" : "Bumper rear", "partClassification" : [ { "value" : "Bumper rear", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Bumper rear" } @@ -83710,15 +83710,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:43afc207-822d-4908-ba02-dac564a0aed3", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "526491", "secondaryMaterialContent" : [ { @@ -83786,7 +83786,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-355345848300864749738106", @@ -83816,7 +83816,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:43afc207-822d-4908-ba02-dac564a0aed3", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -83832,7 +83832,7 @@ "partDescription" : "Exterior mirror left", "partClassification" : [ { "value" : "Exterior mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Exterior mirror left" } @@ -83846,15 +83846,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:ae4122f0-d49e-4be4-9d01-01768469221b", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "708051", "secondaryMaterialContent" : [ { @@ -83922,7 +83922,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-595651059861857550047117", @@ -83952,7 +83952,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:ae4122f0-d49e-4be4-9d01-01768469221b", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -83968,7 +83968,7 @@ "partDescription" : "Exterior mirror right", "partClassification" : [ { "value" : "Exterior mirror right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Exterior mirror right" } @@ -83982,15 +83982,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:dab81f80-9822-4641-8ddf-4bdf3ab026d1", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "489307", "secondaryMaterialContent" : [ { @@ -84058,7 +84058,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-671795242133577657443112", @@ -84088,7 +84088,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:dab81f80-9822-4641-8ddf-4bdf3ab026d1", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -84104,7 +84104,7 @@ "partDescription" : "Tailer coupling", "partClassification" : [ { "value" : "Tailer coupling", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Tailer coupling" } @@ -84118,15 +84118,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:759c777f-3bf2-4c12-966a-faf7fa0e00e1", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "311315", "secondaryMaterialContent" : [ { @@ -84194,7 +84194,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-726559894333799945734478", @@ -84224,7 +84224,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:759c777f-3bf2-4c12-966a-faf7fa0e00e1", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -84240,7 +84240,7 @@ "partDescription" : "Dashboard", "partClassification" : [ { "value" : "Dashboard", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Dashboard" } @@ -84254,15 +84254,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:4f185a28-22dc-40a8-b43c-c330211aa4f7", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "231229", "secondaryMaterialContent" : [ { @@ -84330,7 +84330,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-327556862374077392834377", @@ -84360,7 +84360,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4f185a28-22dc-40a8-b43c-c330211aa4f7", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -84376,7 +84376,7 @@ "partDescription" : "Steering wheel", "partClassification" : [ { "value" : "Steering wheel", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Steering wheel" } @@ -84390,15 +84390,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:577d7c45-b36d-43fb-bb0e-2c265ac02067", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "231909", "secondaryMaterialContent" : [ { @@ -84466,7 +84466,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-473271970672696957810633", @@ -84496,7 +84496,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:577d7c45-b36d-43fb-bb0e-2c265ac02067", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -84512,7 +84512,7 @@ "partDescription" : "Indicator left", "partClassification" : [ { "value" : "Indicator left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Indicator left" } @@ -84526,15 +84526,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:4fd6617f-b267-4086-bda6-8fbb346756a6", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "898819", "secondaryMaterialContent" : [ { @@ -84602,7 +84602,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-357874624757482742499716", @@ -84632,7 +84632,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4fd6617f-b267-4086-bda6-8fbb346756a6", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -84648,7 +84648,7 @@ "partDescription" : "Indicator right", "partClassification" : [ { "value" : "Indicator right", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Indicator right" } @@ -84662,15 +84662,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:82cddf9c-04fd-4d80-8481-31364cebe28e", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "435776", "secondaryMaterialContent" : [ { @@ -84738,7 +84738,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-340933043869375183278500", @@ -84768,7 +84768,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:82cddf9c-04fd-4d80-8481-31364cebe28e", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -84784,7 +84784,7 @@ "partDescription" : "Led headlight", "partClassification" : [ { "value" : "Led headlight", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Led headlight" } @@ -84798,15 +84798,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:32210a39-c1e4-4835-bb2f-0222a3238924", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "880788", "secondaryMaterialContent" : [ { @@ -84874,7 +84874,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-763091238816117984268943", @@ -84904,7 +84904,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:32210a39-c1e4-4835-bb2f-0222a3238924", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -84920,7 +84920,7 @@ "partDescription" : "Starter motor", "partClassification" : [ { "value" : "Starter motor", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Starter motor" } @@ -84934,15 +84934,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:f573ff8a-7fd2-4168-a0a4-3a878824a78d", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "19916", "secondaryMaterialContent" : [ { @@ -85010,7 +85010,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-381167224314555287686138", @@ -85040,7 +85040,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:f573ff8a-7fd2-4168-a0a4-3a878824a78d", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -85056,7 +85056,7 @@ "partDescription" : "Alternator", "partClassification" : [ { "value" : "Alternator", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Alternator" } @@ -85070,15 +85070,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:b603cbc7-1469-4c28-9a0b-9fc2cf02fd4f", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "97770", "secondaryMaterialContent" : [ { @@ -85146,7 +85146,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-231717215685940159225166", @@ -85176,7 +85176,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:b603cbc7-1469-4c28-9a0b-9fc2cf02fd4f", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -85192,7 +85192,7 @@ "partDescription" : "Air conditioning compressor", "partClassification" : [ { "value" : "Air conditioning compressor", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Air conditioning compressor" } @@ -85206,15 +85206,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:b3e7499a-d592-4d25-b1fd-6cc585f20610", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "808234", "secondaryMaterialContent" : [ { @@ -85282,7 +85282,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-915680757235904024515856", @@ -85312,7 +85312,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:b3e7499a-d592-4d25-b1fd-6cc585f20610", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -85328,7 +85328,7 @@ "partDescription" : "Taillight rear", "partClassification" : [ { "value" : "Taillight rear", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Taillight rear" } @@ -85342,15 +85342,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:30ecfffb-129e-466a-a6a9-c9f1656fd14b", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "102718", "secondaryMaterialContent" : [ { @@ -85418,7 +85418,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-462360513709306651652519", @@ -85448,7 +85448,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:30ecfffb-129e-466a-a6a9-c9f1656fd14b", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -85464,7 +85464,7 @@ "partDescription" : "Taillight front", "partClassification" : [ { "value" : "Taillight front", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Taillight front" } @@ -85478,15 +85478,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:64715856-2dbb-4931-8ef4-7508723bcc46", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "137689", "secondaryMaterialContent" : [ { @@ -85554,7 +85554,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-967582137585522817123424", @@ -85584,7 +85584,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:64715856-2dbb-4931-8ef4-7508723bcc46", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -85600,7 +85600,7 @@ "partDescription" : "Axle part front", "partClassification" : [ { "value" : "Axle part front", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Axle part front" } @@ -85614,15 +85614,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:2d0f42cd-10af-4a2e-a83e-a4d96c9fbfd8", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "900946", "secondaryMaterialContent" : [ { @@ -85690,7 +85690,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-632237802485277854042626", @@ -85720,7 +85720,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:2d0f42cd-10af-4a2e-a83e-a4d96c9fbfd8", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -85736,7 +85736,7 @@ "partDescription" : "Axle part rear", "partClassification" : [ { "value" : "Axle part rear", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Axle part rear" } @@ -85750,15 +85750,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:eea157ff-8556-43a0-ac78-42b8be7e173a", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "384978", "secondaryMaterialContent" : [ { @@ -85826,7 +85826,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-346197429468199093595621", @@ -85856,7 +85856,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:eea157ff-8556-43a0-ac78-42b8be7e173a", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -85872,7 +85872,7 @@ "partDescription" : "Chassis", "partClassification" : [ { "value" : "Chassis", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Chassis" } @@ -85886,15 +85886,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:d0b0313f-bdb8-4910-b107-c9ed3dd974d8", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "808764", "secondaryMaterialContent" : [ { @@ -85962,7 +85962,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-601469371440662838418697", @@ -85992,7 +85992,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:d0b0313f-bdb8-4910-b107-c9ed3dd974d8", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -86008,7 +86008,7 @@ "partDescription" : "Rims", "partClassification" : [ { "value" : "Rims", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Rims" } @@ -86022,15 +86022,15 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:ddff47d9-13be-4713-91f7-ecbb84a51b1a", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "903949", "secondaryMaterialContent" : [ { @@ -86098,7 +86098,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-931606014367872724930342", @@ -86128,7 +86128,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:ddff47d9-13be-4713-91f7-ecbb84a51b1a", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -86144,7 +86144,7 @@ "partDescription" : "Tires", "partClassification" : [ { "value" : "Tires", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Tires" } @@ -86158,11 +86158,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -86217,7 +86217,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -86227,13 +86227,13 @@ "value" : 0.2341 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:2ba096e1-4ff8-4933-a5b5-7e5fd50e2104", - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "313828", "secondaryMaterialContent" : [ { @@ -86301,7 +86301,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-071639834964217541173900", @@ -86337,12 +86337,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:2ba096e1-4ff8-4933-a5b5-7e5fd50e2104", - "manufacturerId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -86361,7 +86361,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -86380,7 +86380,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -86454,10 +86454,10 @@ "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "manufacturerId" : "BPNL00000003B2OM" + "manufacturerId" : "BPNL00000003AYRE" }, "sparePartSupplier" : [ { - "supplierId" : "BPNL1234567890ZZ", + "supplierId" : "BPNL00000003AYRE", "supplierContact" : { "website" : "https://www.samsung.com", "phoneNumber" : "+49 89 1234567890", @@ -86529,7 +86529,7 @@ "partDescription" : "Transmission", "partClassification" : [ { "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Transmission" } @@ -86543,11 +86543,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B2OM" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -86576,7 +86576,7 @@ } ] } ], "catenaXId" : "urn:uuid:dc5d74d9-2b0c-4ec1-b12e-382b6681a6c1", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "213245", "secondaryMaterialContent" : [ { @@ -86644,12 +86644,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:dc5d74d9-2b0c-4ec1-b12e-382b6681a6c1", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -86685,7 +86685,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -86699,11 +86699,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -86715,13 +86715,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:95842a1a-884d-4a39-a245-98f81d6c9b21", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "102255", "secondaryMaterialContent" : [ { @@ -86789,7 +86789,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-894160303112407239482756", @@ -86819,12 +86819,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:95842a1a-884d-4a39-a245-98f81d6c9b21", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -86854,7 +86854,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -86868,11 +86868,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -86901,7 +86901,7 @@ } ] } ], "catenaXId" : "urn:uuid:76b57062-db21-45f2-b8e2-b43eb9daa4e1", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "780572", "secondaryMaterialContent" : [ { @@ -86969,12 +86969,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:76b57062-db21-45f2-b8e2-b43eb9daa4e1", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -87010,7 +87010,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -87024,11 +87024,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -87048,7 +87048,7 @@ } ] } ], "catenaXId" : "urn:uuid:7d9820fa-d3c0-4ece-86f8-0b767739a60c", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "981449", "secondaryMaterialContent" : [ { @@ -87116,12 +87116,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:7d9820fa-d3c0-4ece-86f8-0b767739a60c", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -87157,7 +87157,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -87171,11 +87171,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -87200,7 +87200,7 @@ "value" : 0.3301 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -87210,7 +87210,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -87220,13 +87220,13 @@ "value" : 0.2001 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:f5dfb18d-ef5d-4888-ad98-bd2a2211f0f0", - "bpnl" : "BPNL00000003B5MJ", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "463020", "secondaryMaterialContent" : [ { @@ -87294,7 +87294,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-094795570831421532980809", @@ -87324,12 +87324,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:f5dfb18d-ef5d-4888-ad98-bd2a2211f0f0", - "manufacturerId" : "BPNL00000003B5MJ", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -87348,7 +87348,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -87367,7 +87367,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -87397,7 +87397,7 @@ "partDescription" : "ECU", "partClassification" : [ { "value" : "ECU", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "ECU" } @@ -87411,11 +87411,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B5MJ" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -87444,7 +87444,7 @@ } ] } ], "catenaXId" : "urn:uuid:ea95929f-4380-47b4-8a88-99d7ec5c6803", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "182741", "secondaryMaterialContent" : [ { @@ -87512,12 +87512,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:ea95929f-4380-47b4-8a88-99d7ec5c6803", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -87553,7 +87553,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -87567,11 +87567,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -87583,13 +87583,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:cd5a74ac-b6d7-4035-a9a5-8505cc410322", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "16130", "secondaryMaterialContent" : [ { @@ -87657,7 +87657,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-992533935431842398523991", @@ -87687,12 +87687,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:cd5a74ac-b6d7-4035-a9a5-8505cc410322", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -87722,7 +87722,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -87736,11 +87736,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -87769,7 +87769,7 @@ } ] } ], "catenaXId" : "urn:uuid:b5384849-959b-43f8-af12-8ae5a373f65e", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "31858", "secondaryMaterialContent" : [ { @@ -87837,12 +87837,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:b5384849-959b-43f8-af12-8ae5a373f65e", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -87878,7 +87878,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -87892,11 +87892,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -87925,7 +87925,7 @@ } ] } ], "catenaXId" : "urn:uuid:d0f6e28f-f390-4ee8-add7-de8b18d60c40", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "501219", "secondaryMaterialContent" : [ { @@ -87993,7 +87993,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-019813136889709978091012", @@ -88026,7 +88026,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:d0f6e28f-f390-4ee8-add7-de8b18d60c40", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -88042,7 +88042,7 @@ "partDescription" : "Engineering Plastics", "partClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Engineering Plastics" } @@ -88056,11 +88056,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -88072,7 +88072,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -88082,7 +88082,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -88092,7 +88092,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -88102,7 +88102,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -88112,7 +88112,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -88122,16 +88122,16 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:41cea018-a325-42d9-bd58-375863dc0f2a", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-207300113596067476444569", @@ -88216,12 +88216,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:41cea018-a325-42d9-bd58-375863dc0f2a", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -88240,7 +88240,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -88259,7 +88259,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -88278,7 +88278,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -88297,7 +88297,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -88316,7 +88316,7 @@ "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -88361,7 +88361,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2021-10-18", @@ -88453,7 +88453,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -88505,10 +88505,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -88525,7 +88525,7 @@ "partDescription" : "Battery", "partClassification" : [ { "value" : "Battery", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Battery" } @@ -88881,11 +88881,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", @@ -88941,7 +88941,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -89047,7 +89047,7 @@ } ] } ], "catenaXId" : "urn:uuid:f2f4977b-9c26-42be-bf92-bfec3d27d73c", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "14171", "secondaryMaterialContent" : [ { @@ -89115,7 +89115,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-648618634181580984798728", @@ -89145,12 +89145,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:f2f4977b-9c26-42be-bf92-bfec3d27d73c", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89169,7 +89169,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89188,7 +89188,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89207,7 +89207,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89226,7 +89226,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89245,7 +89245,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89264,7 +89264,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89283,7 +89283,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89302,7 +89302,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89321,7 +89321,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89340,7 +89340,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -89621,7 +89621,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2022-11-14", @@ -89713,7 +89713,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -89765,10 +89765,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -89793,7 +89793,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -89807,11 +89807,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -89823,7 +89823,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -90266,7 +90266,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -90709,7 +90709,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -91152,7 +91152,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -91595,7 +91595,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -92038,7 +92038,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -92481,7 +92481,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -92924,7 +92924,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -93367,7 +93367,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -93810,7 +93810,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -94286,7 +94286,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -94392,7 +94392,7 @@ } ] } ], "catenaXId" : "urn:uuid:dfc6f92e-9ef4-425f-b3db-5efb093e6341", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "882798", "secondaryMaterialContent" : [ { @@ -94460,7 +94460,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-045470262688977540104293", @@ -94490,12 +94490,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:dfc6f92e-9ef4-425f-b3db-5efb093e6341", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94514,7 +94514,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94533,7 +94533,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94552,7 +94552,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94571,7 +94571,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94590,7 +94590,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94609,7 +94609,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94628,7 +94628,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94647,7 +94647,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94666,7 +94666,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94685,7 +94685,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -94966,7 +94966,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2024-01-21", @@ -95058,7 +95058,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -95110,10 +95110,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -95138,7 +95138,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -95152,11 +95152,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -95168,7 +95168,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -95611,7 +95611,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -96054,7 +96054,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -96497,7 +96497,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -96940,7 +96940,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -97383,7 +97383,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -97826,7 +97826,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -98269,7 +98269,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -98712,7 +98712,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -99155,7 +99155,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -99631,7 +99631,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -99737,7 +99737,7 @@ } ] } ], "catenaXId" : "urn:uuid:fec78f64-8f01-4b81-ad1f-44d538a49336", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "788319", "secondaryMaterialContent" : [ { @@ -99805,7 +99805,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-259321759561375847455232", @@ -99835,12 +99835,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:fec78f64-8f01-4b81-ad1f-44d538a49336", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -99859,7 +99859,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -99878,7 +99878,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -99897,7 +99897,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -99916,7 +99916,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -99935,7 +99935,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -99954,7 +99954,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -99973,7 +99973,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -99992,7 +99992,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -100011,7 +100011,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -100030,7 +100030,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -100311,7 +100311,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2021-09-26", @@ -100403,7 +100403,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -100457,8 +100457,8 @@ "operation" : { "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -100483,7 +100483,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -100497,11 +100497,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -100513,7 +100513,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -100956,7 +100956,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -101399,7 +101399,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -101842,7 +101842,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -102285,7 +102285,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -102728,7 +102728,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -103171,7 +103171,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -103614,7 +103614,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -104057,7 +104057,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -104500,7 +104500,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -104976,7 +104976,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -105082,7 +105082,7 @@ } ] } ], "catenaXId" : "urn:uuid:cf51133a-6319-4733-9829-409dd6569064", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "404627", "secondaryMaterialContent" : [ { @@ -105150,7 +105150,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-855872895294971506516759", @@ -105180,12 +105180,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:cf51133a-6319-4733-9829-409dd6569064", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105204,7 +105204,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105223,7 +105223,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105242,7 +105242,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105261,7 +105261,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105280,7 +105280,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105299,7 +105299,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105318,7 +105318,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105337,7 +105337,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105356,7 +105356,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105375,7 +105375,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -105656,7 +105656,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2024-02-10", @@ -105748,7 +105748,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -105800,10 +105800,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -105828,7 +105828,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -105842,11 +105842,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -105858,7 +105858,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -106301,7 +106301,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -106744,7 +106744,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -107187,7 +107187,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -107630,7 +107630,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -108073,7 +108073,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -108516,7 +108516,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -108959,7 +108959,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -109402,7 +109402,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -109845,7 +109845,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -110321,7 +110321,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -110427,7 +110427,7 @@ } ] } ], "catenaXId" : "urn:uuid:32be5621-a3ca-4d18-82ae-144a38f958b7", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "686718", "secondaryMaterialContent" : [ { @@ -110495,7 +110495,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-549971143234661258686675", @@ -110525,12 +110525,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:32be5621-a3ca-4d18-82ae-144a38f958b7", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110549,7 +110549,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110568,7 +110568,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110587,7 +110587,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110606,7 +110606,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110625,7 +110625,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110644,7 +110644,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110663,7 +110663,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110682,7 +110682,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110701,7 +110701,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -110720,7 +110720,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -111001,7 +111001,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2024-02-11", @@ -111093,7 +111093,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -111148,7 +111148,7 @@ "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AVTH" + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -111173,7 +111173,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -111187,11 +111187,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -111203,7 +111203,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -111646,7 +111646,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -112089,7 +112089,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -112532,7 +112532,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -112975,7 +112975,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -113418,7 +113418,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -113861,7 +113861,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -114304,7 +114304,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -114747,7 +114747,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -115190,7 +115190,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -115666,7 +115666,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -115772,7 +115772,7 @@ } ] } ], "catenaXId" : "urn:uuid:7776e0be-bff3-4523-a19e-fe063abb42eb", - "bpnl" : "BPNL00000003AVTH", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "862186", "secondaryMaterialContent" : [ { @@ -115840,7 +115840,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AVTH", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-596979391663945157412116", @@ -115870,12 +115870,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:7776e0be-bff3-4523-a19e-fe063abb42eb", - "manufacturerId" : "BPNL00000003AVTH", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -115894,7 +115894,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -115913,7 +115913,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -115932,7 +115932,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -115951,7 +115951,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -115970,7 +115970,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -115989,7 +115989,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -116008,7 +116008,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -116027,7 +116027,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -116046,7 +116046,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -116065,7 +116065,7 @@ "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -116346,7 +116346,7 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AVTH", + "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, "issueDate" : "2024-03-10", @@ -116438,7 +116438,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -116490,10 +116490,10 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AVTH" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AYRE" } } } ], @@ -116518,7 +116518,7 @@ "partDescription" : "HV MODUL", "partClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "HV MODUL" } @@ -116532,11 +116532,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AVTH", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AVTH" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -116548,7 +116548,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -116991,7 +116991,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -117434,7 +117434,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -117877,7 +117877,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -118320,7 +118320,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -118763,7 +118763,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -119206,7 +119206,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -119649,7 +119649,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -120092,7 +120092,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -120535,7 +120535,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -121091,7 +121091,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -121101,7 +121101,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -121371,7 +121371,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -121381,7 +121381,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -121634,13 +121634,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:0f4bea69-603d-4a87-bf0e-a0a0a4bba41f", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "433380", "secondaryMaterialContent" : [ { @@ -121708,7 +121708,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-915477427181817658206458", @@ -121744,12 +121744,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:0f4bea69-603d-4a87-bf0e-a0a0a4bba41f", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -121779,7 +121779,7 @@ "partDescription" : "Door front-left", "partClassification" : [ { "value" : "Door front-left", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-left" } @@ -121793,11 +121793,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -121827,7 +121827,7 @@ } } ], "catenaXId" : "urn:uuid:b27503d5-0a03-4be5-a038-21bac16f05dd", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "554857", "secondaryMaterialContent" : [ { @@ -121895,7 +121895,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-426417753346952091071067", @@ -121925,7 +121925,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:b27503d5-0a03-4be5-a038-21bac16f05dd", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -121941,7 +121941,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -121955,11 +121955,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -121971,13 +121971,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:31b86d83-e63f-4385-88eb-cf11f306645c", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "949003", "secondaryMaterialContent" : [ { @@ -122045,7 +122045,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-411783127352651615475209", @@ -122081,12 +122081,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:31b86d83-e63f-4385-88eb-cf11f306645c", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -122116,7 +122116,7 @@ "partDescription" : "Door front-right", "partClassification" : [ { "value" : "Door front-right", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-right" } @@ -122130,11 +122130,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -122164,7 +122164,7 @@ } } ], "catenaXId" : "urn:uuid:320e90ac-b942-45fe-8ff6-13922aed37c6", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "412403", "secondaryMaterialContent" : [ { @@ -122232,7 +122232,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-653981835975991630928294", @@ -122262,7 +122262,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:320e90ac-b942-45fe-8ff6-13922aed37c6", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -122278,7 +122278,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -122292,11 +122292,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:541a2ca4-3800-4a41-b72d-8f2849fe0182", @@ -125899,7 +125899,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -125909,13 +125909,13 @@ "value" : 0.2341 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:924a84de-da9e-4595-8739-42b40a6d0077", - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "785314", "secondaryMaterialContent" : [ { @@ -125983,7 +125983,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-791244723771633302041448", @@ -126019,12 +126019,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:924a84de-da9e-4595-8739-42b40a6d0077", - "manufacturerId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -126043,7 +126043,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -126062,7 +126062,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -126136,10 +126136,10 @@ "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "manufacturerId" : "BPNL00000003B2OM" + "manufacturerId" : "BPNL00000003AYRE" }, "sparePartSupplier" : [ { - "supplierId" : "BPNL1234567890ZZ", + "supplierId" : "BPNL00000003AYRE", "supplierContact" : { "website" : "https://www.samsung.com", "phoneNumber" : "+49 89 1234567890", @@ -126211,7 +126211,7 @@ "partDescription" : "Transmission", "partClassification" : [ { "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Transmission" } @@ -126225,11 +126225,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B2OM" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -126258,7 +126258,7 @@ } ] } ], "catenaXId" : "urn:uuid:d512fd06-8b2f-413a-8aef-b7a10e438fb1", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "409843", "secondaryMaterialContent" : [ { @@ -126326,12 +126326,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:d512fd06-8b2f-413a-8aef-b7a10e438fb1", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -126367,7 +126367,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -126381,11 +126381,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -126397,13 +126397,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:e92b93fa-60b1-4f34-b5cc-5c12a204969c", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "999296", "secondaryMaterialContent" : [ { @@ -126471,7 +126471,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-249713569402462992672505", @@ -126501,12 +126501,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:e92b93fa-60b1-4f34-b5cc-5c12a204969c", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -126536,7 +126536,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -126550,11 +126550,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -126583,7 +126583,7 @@ } ] } ], "catenaXId" : "urn:uuid:53586360-17c1-4f77-871a-cbccfba2a2da", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "360243", "secondaryMaterialContent" : [ { @@ -126651,12 +126651,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:53586360-17c1-4f77-871a-cbccfba2a2da", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -126692,7 +126692,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -126706,11 +126706,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -126730,7 +126730,7 @@ } ] } ], "catenaXId" : "urn:uuid:14062dbd-961f-44ba-bb3f-820336362fd5", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "486345", "secondaryMaterialContent" : [ { @@ -126798,12 +126798,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:14062dbd-961f-44ba-bb3f-820336362fd5", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -126839,7 +126839,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -126853,11 +126853,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -126882,7 +126882,7 @@ "value" : 0.3301 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -126892,7 +126892,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -126902,13 +126902,13 @@ "value" : 0.2001 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:8a8c11ce-4f43-4987-95a7-5e951f526dc8", - "bpnl" : "BPNL00000003B5MJ", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "916474", "secondaryMaterialContent" : [ { @@ -126976,7 +126976,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-509481473753128753372778", @@ -127006,12 +127006,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:8a8c11ce-4f43-4987-95a7-5e951f526dc8", - "manufacturerId" : "BPNL00000003B5MJ", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -127030,7 +127030,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -127049,7 +127049,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -127079,7 +127079,7 @@ "partDescription" : "ECU", "partClassification" : [ { "value" : "ECU", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "ECU" } @@ -127093,11 +127093,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B5MJ" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -127126,7 +127126,7 @@ } ] } ], "catenaXId" : "urn:uuid:4be18827-78eb-4472-9694-30917301c82f", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "440592", "secondaryMaterialContent" : [ { @@ -127194,12 +127194,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:4be18827-78eb-4472-9694-30917301c82f", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -127235,7 +127235,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -127249,11 +127249,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -127265,13 +127265,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:6de2f5b6-8026-4f8e-b9e0-1219a77ab6fb", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "929989", "secondaryMaterialContent" : [ { @@ -127339,7 +127339,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-820948694319144832197163", @@ -127369,12 +127369,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:6de2f5b6-8026-4f8e-b9e0-1219a77ab6fb", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -127404,7 +127404,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -127418,11 +127418,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -127451,7 +127451,7 @@ } ] } ], "catenaXId" : "urn:uuid:5af891a2-3e7f-4bf9-bbdc-cfa29f952596", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "647828", "secondaryMaterialContent" : [ { @@ -127519,12 +127519,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:5af891a2-3e7f-4bf9-bbdc-cfa29f952596", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -127560,7 +127560,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -127574,11 +127574,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -127607,7 +127607,7 @@ } ] } ], "catenaXId" : "urn:uuid:34b3b38c-eefb-418a-9cfe-c2dcc67dcfc4", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "668123", "secondaryMaterialContent" : [ { @@ -127675,7 +127675,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-336610781119856690067907", @@ -127708,7 +127708,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:34b3b38c-eefb-418a-9cfe-c2dcc67dcfc4", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -127724,7 +127724,7 @@ "partDescription" : "Engineering Plastics", "partClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Engineering Plastics" } @@ -127738,11 +127738,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -128135,7 +128135,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -128189,7 +128189,7 @@ "operation" : { "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -128623,7 +128623,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -129395,7 +129395,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -129447,7 +129447,7 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" @@ -129505,7 +129505,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -129948,7 +129948,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -130391,7 +130391,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -130834,7 +130834,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -131277,7 +131277,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -131720,7 +131720,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -132163,7 +132163,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -132606,7 +132606,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -133049,7 +133049,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -133492,7 +133492,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -133968,7 +133968,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -134740,7 +134740,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -134794,7 +134794,7 @@ "operation" : { "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -134850,7 +134850,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -135293,7 +135293,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -135736,7 +135736,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -136179,7 +136179,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -136622,7 +136622,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -137065,7 +137065,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -137508,7 +137508,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -137951,7 +137951,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -138394,7 +138394,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -138837,7 +138837,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -139313,7 +139313,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -140085,7 +140085,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -140137,7 +140137,7 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" @@ -140195,7 +140195,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -140638,7 +140638,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -141081,7 +141081,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -141524,7 +141524,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -141967,7 +141967,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -142410,7 +142410,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -142853,7 +142853,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -143296,7 +143296,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -143739,7 +143739,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -144182,7 +144182,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -144658,7 +144658,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -145430,7 +145430,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -145482,7 +145482,7 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" @@ -145540,7 +145540,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -145983,7 +145983,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -146426,7 +146426,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -146869,7 +146869,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -147312,7 +147312,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -147755,7 +147755,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -148198,7 +148198,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -148641,7 +148641,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -149084,7 +149084,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -149527,7 +149527,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -150003,7 +150003,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -150775,7 +150775,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -150827,9 +150827,9 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -150885,7 +150885,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -151328,7 +151328,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -151771,7 +151771,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -152214,7 +152214,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -152657,7 +152657,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -153100,7 +153100,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -153543,7 +153543,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -153986,7 +153986,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -154429,7 +154429,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -154872,7 +154872,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -155348,7 +155348,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -156120,7 +156120,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -156172,7 +156172,7 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" @@ -156230,7 +156230,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -156673,7 +156673,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -157116,7 +157116,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -157559,7 +157559,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -158002,7 +158002,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -158445,7 +158445,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -158888,7 +158888,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -159331,7 +159331,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -159774,7 +159774,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -160217,7 +160217,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -160773,7 +160773,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -160783,7 +160783,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -161053,7 +161053,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -161063,7 +161063,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -161316,13 +161316,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:31c3b148-bfee-4d79-b80e-a5944c4172b5", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "602676", "secondaryMaterialContent" : [ { @@ -161390,7 +161390,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-116690170532474588672942", @@ -161426,12 +161426,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:31c3b148-bfee-4d79-b80e-a5944c4172b5", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -161461,7 +161461,7 @@ "partDescription" : "Door front-left", "partClassification" : [ { "value" : "Door front-left", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-left" } @@ -161475,11 +161475,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -161509,7 +161509,7 @@ } } ], "catenaXId" : "urn:uuid:18922081-bf04-490e-bec3-61582040326d", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "672619", "secondaryMaterialContent" : [ { @@ -161577,7 +161577,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-213298574031952930207026", @@ -161607,7 +161607,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:18922081-bf04-490e-bec3-61582040326d", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -161623,7 +161623,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -161637,11 +161637,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -161653,13 +161653,13 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:50015ea1-2613-4877-805c-e4617cdac90e", - "bpnl" : "BPNL00000003CSGV", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "424181", "secondaryMaterialContent" : [ { @@ -161727,7 +161727,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-450419776024834595387622", @@ -161763,12 +161763,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:50015ea1-2613-4877-805c-e4617cdac90e", - "manufacturerId" : "BPNL00000003CSGV", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -161798,7 +161798,7 @@ "partDescription" : "Door front-right", "partClassification" : [ { "value" : "Door front-right", - "key" : "BPNL00000003CSGV:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door front-right" } @@ -161812,11 +161812,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003CSGV", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003CSGV" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { @@ -161846,7 +161846,7 @@ } } ], "catenaXId" : "urn:uuid:61441981-74d4-417a-ac73-00052de4684c", - "bpnl" : "BPNL00000000BJTL", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "468318", "secondaryMaterialContent" : [ { @@ -161914,7 +161914,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-957713976999441820384353", @@ -161944,7 +161944,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:61441981-74d4-417a-ac73-00052de4684c", - "manufacturerId" : "BPNL00000000BJTL", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -161960,7 +161960,7 @@ "partDescription" : "Door Key", "partClassification" : [ { "value" : "Door Key", - "key" : "BPNL00000000BJTL:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Door Key" } @@ -161974,11 +161974,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000000BJTL", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000000BJTL" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "catenaXId" : "urn:uuid:efd14c04-3d00-47dd-8a67-9e18b94f4d4b", @@ -165581,7 +165581,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -165591,13 +165591,13 @@ "value" : 0.2341 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AZQP", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:42b9d92f-b1b8-450d-a93e-bc7ad1f52fee", - "bpnl" : "BPNL00000003B2OM", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "335379", "secondaryMaterialContent" : [ { @@ -165665,7 +165665,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-367390285408092386156205", @@ -165701,12 +165701,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:42b9d92f-b1b8-450d-a93e-bc7ad1f52fee", - "manufacturerId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -165725,7 +165725,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -165744,7 +165744,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -165818,10 +165818,10 @@ "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "manufacturerId" : "BPNL00000003B2OM" + "manufacturerId" : "BPNL00000003AYRE" }, "sparePartSupplier" : [ { - "supplierId" : "BPNL1234567890ZZ", + "supplierId" : "BPNL00000003AYRE", "supplierContact" : { "website" : "https://www.samsung.com", "phoneNumber" : "+49 89 1234567890", @@ -165893,7 +165893,7 @@ "partDescription" : "Transmission", "partClassification" : [ { "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Transmission" } @@ -165907,11 +165907,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B2OM", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B2OM" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -165940,7 +165940,7 @@ } ] } ], "catenaXId" : "urn:uuid:db84254d-deaf-4c70-8e08-0383cd34220a", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "350619", "secondaryMaterialContent" : [ { @@ -166008,12 +166008,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:db84254d-deaf-4c70-8e08-0383cd34220a", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -166049,7 +166049,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -166063,11 +166063,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -166079,13 +166079,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:7f1aa30a-d5c2-4359-80ef-58ab427c09e6", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "173272", "secondaryMaterialContent" : [ { @@ -166153,7 +166153,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-188721763564812888511191", @@ -166183,12 +166183,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:7f1aa30a-d5c2-4359-80ef-58ab427c09e6", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -166218,7 +166218,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -166232,11 +166232,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -166265,7 +166265,7 @@ } ] } ], "catenaXId" : "urn:uuid:775984b5-50a5-41f8-9a1c-421738d0947b", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "517043", "secondaryMaterialContent" : [ { @@ -166333,12 +166333,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:775984b5-50a5-41f8-9a1c-421738d0947b", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -166374,7 +166374,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -166388,11 +166388,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -166412,7 +166412,7 @@ } ] } ], "catenaXId" : "urn:uuid:5dea35ec-6356-480b-a17f-b7bfd0e68885", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "822501", "secondaryMaterialContent" : [ { @@ -166480,12 +166480,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:5dea35ec-6356-480b-a17f-b7bfd0e68885", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -166521,7 +166521,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -166535,11 +166535,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -166564,7 +166564,7 @@ "value" : 0.3301 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -166574,7 +166574,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -166584,13 +166584,13 @@ "value" : 0.2001 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:07db53f4-6b96-4166-8cf3-0b4a233c097b", - "bpnl" : "BPNL00000003B5MJ", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "406389", "secondaryMaterialContent" : [ { @@ -166658,7 +166658,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-018837298523927380515994", @@ -166688,12 +166688,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:07db53f4-6b96-4166-8cf3-0b4a233c097b", - "manufacturerId" : "BPNL00000003B5MJ", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -166712,7 +166712,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -166731,7 +166731,7 @@ "item" : [ { "itemClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -166761,7 +166761,7 @@ "partDescription" : "ECU", "partClassification" : [ { "value" : "ECU", - "key" : "BPNL00000003B5MJ:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "ECU" } @@ -166775,11 +166775,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B5MJ", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B5MJ" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -166808,7 +166808,7 @@ } ] } ], "catenaXId" : "urn:uuid:87d8fba4-894e-4bf9-ba36-a08be92a15b8", - "bpnl" : "BPNL00000003AXS3", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "860784", "secondaryMaterialContent" : [ { @@ -166876,12 +166876,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:87d8fba4-894e-4bf9-ba36-a08be92a15b8", - "manufacturerId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -166917,7 +166917,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -166931,11 +166931,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003AXS3" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -166947,13 +166947,13 @@ "value" : 0.1908 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], "catenaXId" : "urn:uuid:1fc48fb6-f88a-40c5-a0c0-6a3613657405", - "bpnl" : "BPNL00000003B3NX", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "262398", "secondaryMaterialContent" : [ { @@ -167021,7 +167021,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-740364200785357435430042", @@ -167051,12 +167051,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:1fc48fb6-f88a-40c5-a0c0-6a3613657405", - "manufacturerId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { "quantityNumber" : 20, @@ -167086,7 +167086,7 @@ "partDescription" : "Sensor", "partClassification" : [ { "value" : "Sensor", - "key" : "BPNL00000003B3NX:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Sensor" } @@ -167100,11 +167100,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B3NX", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B3NX" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -167133,7 +167133,7 @@ } ] } ], "catenaXId" : "urn:uuid:a6407459-1efa-49c7-986e-83b3428b41d5", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "809541", "secondaryMaterialContent" : [ { @@ -167201,12 +167201,12 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:a6407459-1efa-49c7-986e-83b3428b41d5", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "batchId" } ], "manufacturingInformation" : { @@ -167242,7 +167242,7 @@ "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "" } @@ -167256,11 +167256,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -167289,7 +167289,7 @@ } ] } ], "catenaXId" : "urn:uuid:f761cdb6-fc23-49b1-b58a-10dda84b66ee", - "bpnl" : "BPNL00000003B0Q0", + "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { "orderNumber" : "356845", "secondaryMaterialContent" : [ { @@ -167357,7 +167357,7 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", + "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { "value" : "NO-898776242679922634132223", @@ -167390,7 +167390,7 @@ } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { "assetId" : "urn:uuid:f761cdb6-fc23-49b1-b58a-10dda84b66ee", - "manufacturerId" : "BPNL00000003B0Q0", + "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { @@ -167406,7 +167406,7 @@ "partDescription" : "Engineering Plastics", "partClassification" : [ { "value" : "Engineering Plastics", - "key" : "BPNL00000003B0Q0:PartFamily" + "key" : "BPNL00000003AYRE:PartFamily" } ], "nameAtOwner" : "Engineering Plastics" } @@ -167420,11 +167420,11 @@ "unit" : "unit:piece", "value" : 20 }, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "customers" : [ "BPNL00000003B0Q0" ] + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { @@ -167817,7 +167817,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -167869,9 +167869,9 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -168305,7 +168305,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { @@ -169077,7 +169077,7 @@ "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" + "producerId" : "BPNL00000003AYRE" } ], "substanceOfConcern" : [ { "unit" : "unit:percent", @@ -169129,7 +169129,7 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" @@ -169187,7 +169187,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -169630,7 +169630,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -170073,7 +170073,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -170516,7 +170516,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -170959,7 +170959,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -171402,7 +171402,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -171845,7 +171845,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -172288,7 +172288,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -172731,7 +172731,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] @@ -173174,7 +173174,7 @@ "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ]