diff --git a/.github/workflows/tavern.yml b/.github/workflows/tavern.yml index fa8f519ba4..1d3bd81668 100644 --- a/.github/workflows/tavern.yml +++ b/.github/workflows/tavern.yml @@ -26,13 +26,28 @@ on: global-asset-id-asBuilt: type: string description: Global-asset-id to use for the asBuilt tests. - default: 'urn:uuid:6d505432-8b31-4966-9514-4b753372683f' + default: 'urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d' required: true bpn-asBuilt: type: string description: BPN to use for the asBuilt global-asset-id. default: 'BPNL00000003AVTH' required: true + global-asset-id-ess-asBuilt: + type: string + description: Global-asset-id to use for the asBuilt tests. + default: 'urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7' + required: true + bpn-ess-asBuilt: + type: string + description: BPN to use for the asBuilt global-asset-id. + default: 'BPNL00000003CRHK' + required: true + bpn-ess-incident: + type: string + description: Incident BPN to search for which violates against environmental and social standards. + default: 'BPNS00000003B6LU' + required: true execution-ticket: type: string description: JIRA execution ticket to safe results in. @@ -68,6 +83,9 @@ jobs: REGULAR_USER_API_KEY_ESS: ${{ secrets.INT_REGULAR_USER_API_KEY }} ADMIN_USER_API_KEY_ESS: ${{ secrets.INT_ADMIN_USER_API_KEY }} GLOBAL_ASSET_ID_AS_PLANNED: ${{ github.event.inputs.global-asset-id-asPlanned || 'urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e' }} + GLOBAL_ASSET_ID_ESS_AS_BUILT: ${{ github.event.inputs.global-asset-id-ess-asBuilt || 'urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7' }} + BPN_ESS_AS_BUILT: ${{ github.event.inputs.bpn-ess-asBuilt || 'BPNL00000003CRHK' }} + BPN_ESS_INCIDENT: ${{ github.event.inputs.bpn-ess-incident || 'BPNS00000003B6LU' }} BPN_AS_PLANNED: ${{ github.event.inputs.bpn-asPlanned || 'BPNL00000003AYRE' }} GLOBAL_ASSET_ID_AS_BUILT: ${{ github.event.inputs.global-asset-id-asBuilt || 'urn:uuid:6d505432-8b31-4966-9514-4b753372683f' }} BPN_AS_BUILT: ${{ github.event.inputs.bpn-asBuilt || 'BPNL00000003AVTH' }} diff --git a/.gitignore b/.gitignore index 11f7967ef4..95c2c9c5ec 100644 --- a/.gitignore +++ b/.gitignore @@ -58,6 +58,7 @@ dependency-reduced-pom.xml ### Local files ### dev/local/* /local/testing/api-tests/variable.env +/local/testing/api-tests/variable.ps1 local/testing/api-tests/__pycache__/ ### Cucumber ### diff --git a/CHANGELOG.md b/CHANGELOG.md index b7fc1e3cdc..89d66d66bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ _**For better traceability add the corresponding GitHub issue number in each cha ## Changed - Removed obsolete entries from acceptedPolicies configuration. #530 +- Support of building relationships based on SingleLevelUsageAsBuilt v3.0.0 #558 +- Support of building relationships based on SingleLevelBomAsPlanned v3.0.0 #558 ### Fixed diff --git a/COMPATIBILITY_MATRIX.md b/COMPATIBILITY_MATRIX.md index ff32fa5fde..c472625dca 100644 --- a/COMPATIBILITY_MATRIX.md +++ b/COMPATIBILITY_MATRIX.md @@ -4,25 +4,18 @@ Full changelog of IRS: [changelog](CHANGELOG.md) ## [Unreleased] -| Dependency | Version | Helm | Comments | -|----------------------------|------------------------------|------------|-----------------| -| EDC | 0.5.3 | 0.5.3 | | -| EDC PostgresSQL | 15.1.0-debian-11-r12 | 12.1.6 | Optional | -| MIW | 0.1.0 | 0.1.0 | REST connection | -| Semantics Hub | 0.1.29 | v0.2.11-M1 | REST connection | -| DTR | 0.3.14-M1 | 0.3.22 | REST connection | -| Minio | RELEASE.2022-11-11T03-44-20Z | 5.0.1 | | -| SingleLevelBomAsBuilt | 2.0.0 | - | Model version | -| SingleLevelBomAsPlanned | 2.0.0 | - | Model version | -| SingleLevelBomAsSpecified | 1.0.0 | - | Model version | -| SingleLevelUsageAsBuilt | 2.0.0 | - | Model version | -| PartAsPlanned | 2.0.0 | - | Model Version | -| SingleLevelBomAsPlanned | 3.0.0 | - | Model Version | -| SerialPart | 3.0.0 | - | Model Version | -| Batch | 3.0.0 | - | Model Version | -| JustInSequencePart | 3.0.0 | - | Model Version | -| SingleLevelBomAsBuilt | 3.0.0 | - | Model Version | -| PartSiteInformationAsBuilt | 1.0.0 | - | Model Version | +| Dependency | Version | Helm | Comments | +|---------------------------|------------------------------|------------|-----------------| +| EDC | 0.5.3 | 0.5.3 | | +| EDC PostgresSQL | 15.1.0-debian-11-r12 | 12.1.6 | Optional | +| MIW | 0.1.0 | 0.1.0 | REST connection | +| Semantics Hub | 0.1.29 | v0.2.11-M1 | REST connection | +| DTR | 0.3.14-M1 | 0.3.22 | REST connection | +| Minio | RELEASE.2022-11-11T03-44-20Z | 5.0.1 | | +| SingleLevelBomAsBuilt | [ 2.0.0; 3.0.0 ] | - | Model version | +| SingleLevelBomAsPlanned | [ 2.0.0; 3.0.0 ] | - | Model version | +| SingleLevelBomAsSpecified | 1.0.0 | - | Model version | +| SingleLevelUsageAsBuilt | 3.0.0 | - | Model version | ## [4.9.0] - 2024-04-03 diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java index 8505e2df2f..c273f003c1 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/SubmodelDelegate.java @@ -96,8 +96,8 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai getSubmodels(submodelDescriptor, itemContainerBuilder, itemId.getGlobalAssetId(), itemId.getBpn(), jobData.isAuditContractNegotiation()))); } - log.debug("Unfiltered SubmodelDescriptor: {}", aasSubmodelDescriptors); - log.debug("Filtered SubmodelDescriptor: {}", filteredSubmodelDescriptorsByAspectType); + log.trace("Unfiltered SubmodelDescriptor: {}", aasSubmodelDescriptors); + log.trace("Filtered SubmodelDescriptor: {}", filteredSubmodelDescriptorsByAspectType); shell.payload().setSubmodelDescriptors(filteredSubmodelDescriptorsByAspectType); diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/BaseJobStore.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/BaseJobStore.java index 05850296bc..6b31b51b29 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/BaseJobStore.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/BaseJobStore.java @@ -131,8 +131,7 @@ public void completeTransferProcess(final String jobId, final TransferProcess pr log.info("Job {} has no remaining transfers, transitioning to TRANSFERS_FINISHED", jobId); newJob.transitionTransfersFinished(); } else { - log.info("Job {} has {} remaining transfers, cannot finish it: {}", jobId, remainingTransfers.size(), - newJob.build()); + log.info("Job {} has {} remaining transfers, cannot finish it.", jobId, remainingTransfers.size()); } return newJob.build(); }); diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java index fdbd7940ff..2ad1033485 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/validation/JsonValidatorService.java @@ -52,7 +52,7 @@ public class JsonValidatorService { * @return the validation result, containing the validation errors if applicable */ public ValidationResult validate(final String jsonSchema, final String jsonPayload) throws InvalidSchemaException { - log.debug("Trying to validate JSON ({}) with schema ({})", jsonPayload, jsonSchema); + log.trace("Trying to validate JSON ({}) with schema ({})", jsonPayload, jsonSchema); final JsonSchema schemaFromString = loadSchema(jsonSchema); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java index 82ae9ff5e4..7bff9ff55f 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceSpringBootTest.java @@ -25,6 +25,7 @@ import static org.assertj.core.api.Assertions.assertThat; import static org.awaitility.Awaitility.given; +import static org.eclipse.tractusx.irs.util.TestMother.EXISTING_GLOBAL_ASSET_ID; import static org.eclipse.tractusx.irs.util.TestMother.productDescriptionAspectName; import static org.eclipse.tractusx.irs.util.TestMother.registerJob; import static org.eclipse.tractusx.irs.util.TestMother.registerJobWithDepthAndAspect; @@ -134,7 +135,7 @@ void registerJobWithCollectAspectsShouldIncludeSubmodels() throws InvalidSchemaE when(jsonValidatorService.validate(any(), any())).thenReturn(ValidationResult.builder().valid(true).build()); when(connectorEndpointsService.fetchConnectorEndpoints(any())).thenReturn( List.of("https://connector.endpoint.nl")); - final RegisterJob registerJob = registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", 100, + final RegisterJob registerJob = registerJob(EXISTING_GLOBAL_ASSET_ID, 100, List.of(serialPartAspectName, productDescriptionAspectName, singleLevelBomAsBuiltAspectName), true, false, Direction.DOWNWARD); when(connectorEndpointsService.fetchConnectorEndpoints(registerJob.getKey().getBpn())).thenReturn( @@ -192,7 +193,7 @@ void registerJobWithDepthShouldBuildTreeUntilGivenDepth() { @Test void registerJobWithUpwardDirectionShouldBuildRelationships() { // given - final RegisterJob registerJob = registerJobWithDirection("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + final RegisterJob registerJob = registerJobWithDirection(EXISTING_GLOBAL_ASSET_ID, Direction.UPWARD); when(connectorEndpointsService.fetchConnectorEndpoints(any())).thenReturn( List.of("http://localhost/discovery")); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/util/TestMother.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/util/TestMother.java index ebf62140b5..52a3c479ac 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/util/TestMother.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/util/TestMother.java @@ -78,6 +78,8 @@ public class TestMother { public static final String materialForRecyclingAspectName = "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling"; public static final String productDescriptionAspectName = "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription"; + public static final String EXISTING_GLOBAL_ASSET_ID = "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf"; + Faker faker = new Faker(); public static RegisterJob registerJobWithoutDepthAndAspect() { @@ -89,7 +91,7 @@ public static RegisterJob registerJobWithoutDepth() { } public static RegisterJob registerJobWithDepthAndAspect(final Integer depth, final List aspectTypes) { - return registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", depth, aspectTypes, false, false, + return registerJob(EXISTING_GLOBAL_ASSET_ID, depth, aspectTypes, false, false, Direction.DOWNWARD); } @@ -98,7 +100,7 @@ public static RegisterJob registerJobWithDirection(final String globalAssetId, f } public static RegisterJob registerJobWithUrl(final String callbackUrl) { - final RegisterJob registerJob = registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", 100, List.of(), + final RegisterJob registerJob = registerJob(EXISTING_GLOBAL_ASSET_ID, 100, List.of(), false, false, Direction.DOWNWARD); registerJob.setCallbackUrl(callbackUrl); return registerJob; @@ -106,12 +108,12 @@ public static RegisterJob registerJobWithUrl(final String callbackUrl) { public static RegisterJob registerJobWithDepthAndAspectAndCollectAspects(final Integer depth, final List aspectTypes) { - return registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", depth, aspectTypes, true, false, + return registerJob(EXISTING_GLOBAL_ASSET_ID, depth, aspectTypes, true, false, Direction.DOWNWARD); } public static RegisterJob registerJobWithLookupBPNs() { - return registerJob("urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", null, + return registerJob(EXISTING_GLOBAL_ASSET_ID, null, List.of(singleLevelBomAsBuiltAspectName), false, true, Direction.DOWNWARD); } diff --git a/irs-api/src/test/resources/singleLevelUsageAsBuilt.json b/irs-api/src/test/resources/singleLevelUsageAsBuilt.json index 1d27375d21..d11accf0ee 100644 --- a/irs-api/src/test/resources/singleLevelUsageAsBuilt.json +++ b/irs-api/src/test/resources/singleLevelUsageAsBuilt.json @@ -1,21 +1,15 @@ { - "catenaXId": "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "customers": [ - { - "parentItems": [ - { - "catenaXId": "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "businessPartner": "BPNL50096894aNXY", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] -} \ No newline at end of file + "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:055c1128-0375-47c8-98de-7cf802c3241d", + "isOnlyPotentialParent" : false, + "quantity" : { + "value" : 20.0, + "unit" : "unit:piece" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "businessPartner" : "BPNL50096894aNXY", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL50096894aNXY" ] +} \ No newline at end of file diff --git a/irs-common/src/main/java/org/eclipse/tractusx/irs/common/util/concurrent/ResultFinder.java b/irs-common/src/main/java/org/eclipse/tractusx/irs/common/util/concurrent/ResultFinder.java index a8fd1fb069..7895c9f8c1 100644 --- a/irs-common/src/main/java/org/eclipse/tractusx/irs/common/util/concurrent/ResultFinder.java +++ b/irs-common/src/main/java/org/eclipse/tractusx/irs/common/util/concurrent/ResultFinder.java @@ -101,7 +101,7 @@ private static BiFunction completingOnFirstSuccessful return (value, throwable) -> { - log.debug("value: '{}', throwable: {}", value, throwable); + log.trace("value: '{}', throwable: {}", value, throwable); final boolean notFinishedByOtherFuture = !overallFuture.isDone(); log.debug("notFinishedByOtherFuture {} ", notFinishedByOtherFuture); 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 4fcd24807c..c7b894def3 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 @@ -1,19 +1,19 @@ { "relationships": [ { - "catenaXId": "urn:uuid:6d505432-8b31-4966-9514-4b753372683f", + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "linkedItem": { "quantity": { - "quantityNumber": 2.5, + "quantityNumber": 20.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4db3b19e-1152-4e4e-8b4b-63c2f4fccc5c", + "childCatenaXId": "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "hasAlternatives": false }, "aspectType": "SingleLevelUsageAsBuilt", diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1537-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1537-expected-submodels.json index dc897ab69f..22a8ea4285 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1537-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1537-expected-submodels.json @@ -1,28 +1,41 @@ { - "submodels": [ - { - "identification": "urn:uuid:e336fdab-1c22-4968-ba91-a5b011ed0e9b", - "aspectType": "urn:bamm:io.catenax.just_in_sequence_part:1.0.0#JustInSequencePart", - "payload": { - "localIdentifiers": [ - { - "value": "59144578DSQ", - "key": "jisNumber" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:805daf66-3f24-4fa8-9b00-f940fb0b3f19", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "customerPartId": "PRT-12345", - "classification": "product", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" - } + "submodels": [ + { + "identification": "urn:uuid:52d1ed27-2729-4ff8-bb3f-d10ff0dcaf76", + "aspectType": "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:OTU4MjFhY2QtNmQxMS00MjQ3LTkxZWEtZDk3ODAwMzRkMzIw", + "payload": { + "localIdentifiers": [ + { + "value": "82227044FBE", + "key": "jisNumber" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000000BJTL", + "function": "production" } + ] + }, + "catenaXId": "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", + "partTypeInformation": { + "manufacturerPartId": "123-0.740-3434-A", + "customerPartId": "PRT-12345", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left", + "nameAtCustomer": "side element A" } - ] + } + } + ] } \ 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 d070c218a8..9d3346e216 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 @@ -1,403 +1,3310 @@ { - "relationships": [ - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AXS3" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ca8f4933-b62e-40c1-b587-998edd5056f7", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:82b2eac2-a016-479a-812b-403361ba3ed4", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bc2095c0-fc67-4789-96a6-2d3cd6a52eb8", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:717a3353-d3e0-4a50-9b02-cd6d351cc2fe", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5e53acc4-9e53-47c1-bf3a-2b9b943d5fc1", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4a81499e-217e-4db4-af6d-f4cf5460d35e", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d997bd22-7d6f-4682-a834-d0c222006302", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d128f21a-470c-4e91-86de-f7ec2fa70e98", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8615eae2-6d30-43b2-af48-2440f5f1882d", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:03ef68ec-225f-4a40-bbe4-b8e01d9a1556", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - }, - { - "catenaXId": "urn:uuid:5e53acc4-9e53-47c1-bf3a-2b9b943d5fc1", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:03ef68ec-225f-4a40-bbe4-b8e01d9a1556", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:bc2095c0-fc67-4789-96a6-2d3cd6a52eb8", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:d997bd22-7d6f-4682-a834-d0c222006302", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:d128f21a-470c-4e91-86de-f7ec2fa70e98", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:82b2eac2-a016-479a-812b-403361ba3ed4", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:4a81499e-217e-4db4-af6d-f4cf5460d35e", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:8615eae2-6d30-43b2-af48-2440f5f1882d", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:ca8f4933-b62e-40c1-b587-998edd5056f7", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - }, - { - "catenaXId": "urn:uuid:717a3353-d3e0-4a50-9b02-cd6d351cc2fe", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B0Q0" - } - ] + "relationships": [ + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003CSGV" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003CSGV" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B2OM" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B5MJ" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000000BJTL" + }, + { + "catenaXId": "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000000BJTL" + }, + { + "catenaXId": "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AVTH" + }, + { + "catenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B3NX" + }, + { + "catenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "linkedItem": { + "quantity": { + "quantityNumber": 0.2341, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AZQP" + }, + { + "catenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "linkedItem": { + "quantity": { + "quantityNumber": 0.2014, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "linkedItem": { + "quantity": { + "quantityNumber": 0.2001, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B3NX" + }, + { + "catenaXId": "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "linkedItem": { + "quantity": { + "quantityNumber": 0.3301, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AXS3" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AXS3" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AXS3" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AXS3" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "linkedItem": { + "quantity": { + "quantityNumber": 0.1908, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AXS3" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AXS3" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", + "linkedItem": { + "quantity": { + "quantityNumber": 0.1908, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AXS3" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + }, + { + "catenaXId": "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + }, + { + "catenaXId": "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + } + ] } \ 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 2f1c3d6bd1..1e5aa62e8a 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 @@ -1,290 +1,2560 @@ { - "submodels": [ - { - "identification": "urn:uuid:c61ede7a-9f80-4cbd-a8b3-5fe434a0741c", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:533543fb-5d09-4270-b4d5-0323de239d9a", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Sealant" - } - } - }, - { - "identification": "urn:uuid:2f124048-b901-48dd-b8b1-b1515f1edb0a", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:7ba8bc2e-eb1b-4ad8-bc43-8ac0f36cfd42", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:2f124048-b901-48dd-b8b1-b1515f1edb0a", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:2f124048-b901-48dd-b8b1-b1515f1edb0a", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:2f124048-b901-48dd-b8b1-b1515f1edb0a", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:2f124048-b901-48dd-b8b1-b1515f1edb0a", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:e3754252-85e0-4b50-98a0-b4010565fa07", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:7ba8bc2e-eb1b-4ad8-bc43-8ac0f36cfd42", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:7ba8bc2e-eb1b-4ad8-bc43-8ac0f36cfd42", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:7ba8bc2e-eb1b-4ad8-bc43-8ac0f36cfd42", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - }, - { - "identification": "urn:uuid:7ba8bc2e-eb1b-4ad8-bc43-8ac0f36cfd42", - "aspectType": "urn:samm:io.catenax.batch:2.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "BID12345678", - "key": "batchId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "HUR" - }, - "catenaXId": "urn:uuid:98a8a7e9-b265-479c-a11e-77219f94d659", - "partTypeInformation": { - "manufacturerPartId": "123-0.740-3434-A", - "classification": "product", - "nameAtManufacturer": "Cathode Material" - } - } - } - ] + "submodels": [ + { + "identification": "urn:uuid:6f920ae9-80a6-4b6d-a4c0-6ae876798588", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:ZmU4YjJlOGEtYmVhZi00ZjA4LWE5ZWEtYzM5MzZiNGU0MzY2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", + "partTypeInformation": { + "manufacturerPartId": "SC-00", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "03" + } + }, + { + "identification": "urn:uuid:1b013dbd-c709-43dc-8d44-eeb12c3caefa", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:ZGYwZjQyY2YtYzAzMy00ZDUwLWFkMWItMWM3NWY5YjY4MmNm", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", + "partTypeInformation": { + "manufacturerPartId": "JK-40", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "02" + } + }, + { + "identification": "urn:uuid:e448e4c3-b60f-40b4-b003-8ff70df520e0", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", + "partTypeInformation": { + "manufacturerPartId": "TK-01", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "03" + } + }, + { + "identification": "urn:uuid:2f53c208-7fe3-4483-ace4-9cb9d27c6d4a", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:ZmU4YjJlOGEtYmVhZi00ZjA4LWE5ZWEtYzM5MzZiNGU0MzY2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "partTypeInformation": { + "manufacturerPartId": "FQ-22", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:f11358db-cf88-4a67-bd1d-0bc9cb569a0d", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:ZmU4YjJlOGEtYmVhZi00ZjA4LWE5ZWEtYzM5MzZiNGU0MzY2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", + "partTypeInformation": { + "manufacturerPartId": "CK-88", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "04" + } + }, + { + "identification": "urn:uuid:2f53c208-7fe3-4483-ace4-9cb9d27c6d4a", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:ZmU4YjJlOGEtYmVhZi00ZjA4LWE5ZWEtYzM5MzZiNGU0MzY2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "partTypeInformation": { + "manufacturerPartId": "FQ-22", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:2f53c208-7fe3-4483-ace4-9cb9d27c6d4a", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:ZmU4YjJlOGEtYmVhZi00ZjA4LWE5ZWEtYzM5MzZiNGU0MzY2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "partTypeInformation": { + "manufacturerPartId": "FQ-22", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:f11358db-cf88-4a67-bd1d-0bc9cb569a0d", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:ZmU4YjJlOGEtYmVhZi00ZjA4LWE5ZWEtYzM5MzZiNGU0MzY2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", + "partTypeInformation": { + "manufacturerPartId": "CK-88", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "04" + } + }, + { + "identification": "urn:uuid:50c80d6e-f84a-4dce-9440-077669e72886", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", + "partTypeInformation": { + "manufacturerPartId": "JC-28", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:b553e542-a608-4c55-941a-5a246ff23161", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", + "partTypeInformation": { + "manufacturerPartId": "QQ-78", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "01" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:2f53c208-7fe3-4483-ace4-9cb9d27c6d4a", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:ZmU4YjJlOGEtYmVhZi00ZjA4LWE5ZWEtYzM5MzZiNGU0MzY2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "partTypeInformation": { + "manufacturerPartId": "FQ-22", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:1ea9ee80-7b54-4c57-9830-6c868d1f42cc", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:MjkzOTk0MGUtYzcyYy00NmZlLWEwMTktMzM1ODk2OWIwOTZh", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "partTypeInformation": { + "manufacturerPartId": "VI-92", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:545357ff-bf07-4432-a493-6305a2d7cdfe", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MThhZTU0MWYtMWFkZi00MGQ1LTg4MjItNGI4YjBmMTYxMTQ2", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] + }, + "catenaXId": "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation": { + "manufacturerPartId": "VK-21", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" + }, + "itemVersion": "05" + } + } + ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1647-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1647-expected-submodels.json index 5528d8a886..e0c2790f80 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-1647-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-1647-expected-submodels.json @@ -1,109 +1,109 @@ { - "submodels": [ - { - "identification": "urn:uuid:662f3a1b-de56-4cbb-8fb4-51779643126d", - "aspectType": "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", - "contractAgreementId": null, - "payload": { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "subcomponents": [ - { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "productType": "pack" - } - ], - "productType": "pack" - } - }, - { - "identification": "urn:uuid:73068d1b-e846-4a22-a0ae-b6310f5b0a36", - "aspectType": "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", - "contractAgreementId": null, - "payload": { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "subcomponents": [ - { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "productType": "module" - } - ], - "productType": "module" - } - }, - { - "identification": "urn:uuid:b5933d6b-f005-4a9a-996e-a55501b2d651", - "aspectType": "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", - "contractAgreementId": null, - "payload": { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "subcomponents": [ - { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "productType": "module" - } - ], - "productType": "module" - } - }, - { - "identification": "urn:uuid:ab703fb6-7869-439b-aedf-43c3f21f8060", - "aspectType": "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", - "contractAgreementId": null, - "payload": { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "subcomponents": [ - { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "productType": "module" - } - ], - "productType": "module" - } - }, - { - "identification": "urn:uuid:26aa986b-a443-4b8d-aec5-bc0da9757cbe", - "aspectType": "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", - "contractAgreementId": null, - "payload": { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "subcomponents": [ - { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "productType": "module" - } - ], - "productType": "module" - } - }, - { - "identification": "urn:uuid:1753b174-8212-429d-9f37-cfa2e0d6a07c", - "aspectType": "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", - "contractAgreementId": null, - "payload": { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "subcomponents": [ - { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "productType": "module" - } - ], - "productType": "module" - } - }, - { - "identification": "urn:uuid:6e6f7237-982e-4359-accf-e3b9c0fb4f0e", - "aspectType": "urn:bamm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", - "contractAgreementId": null, - "payload": { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "subcomponents": [ - { - "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", - "productType": "module" - } - ], - "productType": "module" - } - } - ] + "submodels": [ + { + "identification": "urn:uuid:0f28e9b8-d683-4ac7-ab04-e2da39f6dbf4", + "aspectType": "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:ZWQwYjA1Y2EtZTdhMS00OWNjLTgwNzgtYWYxYWU2MWMwYjU4", + "payload": { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "subcomponents": [ + { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "productType": "pack" + } + ], + "productType": "pack" + } + }, + { + "identification": "urn:uuid:207317f6-5689-4957-a8b1-be613cf6e811", + "aspectType": "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "subcomponents": [ + { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "productType": "module" + } + ], + "productType": "module" + } + }, + { + "identification": "urn:uuid:bbbb4f96-4ffc-4228-bb8b-6c584c714c13", + "aspectType": "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:N2I3YWEwYTktYzYyNS00ZjdmLWEzMjMtYmYxYTkxNThlMWUw", + "payload": { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "subcomponents": [ + { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "productType": "module" + } + ], + "productType": "module" + } + }, + { + "identification": "urn:uuid:6e432adb-10f0-499f-ad08-bbf36c74f9bb", + "aspectType": "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "subcomponents": [ + { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "productType": "module" + } + ], + "productType": "module" + } + }, + { + "identification": "urn:uuid:3685db54-9d52-4df2-87a2-05c32edbdc49", + "aspectType": "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "subcomponents": [ + { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "productType": "module" + } + ], + "productType": "module" + } + }, + { + "identification": "urn:uuid:86fee0d5-130c-43cc-b476-4fcce3f9a1c5", + "aspectType": "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "subcomponents": [ + { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "productType": "module" + } + ], + "productType": "module" + } + }, + { + "identification": "urn:uuid:5156fe68-a54b-45e6-8c82-0c4fd488be8c", + "aspectType": "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:ZWQwYjA1Y2EtZTdhMS00OWNjLTgwNzgtYWYxYWU2MWMwYjU4", + "payload": { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "subcomponents": [ + { + "tractionBatteryCode": "X12MCPM27KLPCLX2M2382320", + "productType": "module" + } + ], + "productType": "module" + } + } + ] } \ No newline at end of file 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 7786f58268..bca88302a2 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 @@ -1,61 +1,61 @@ { - "relationships" : [ - { - "catenaXId": "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "linkedItem": { - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:litre" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d57a0374-45bc-4d9e-b44c-e6e75cfe84c0", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003B3NX" + "relationships": [ + { + "catenaXId": "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } }, - { - "catenaXId": "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2341, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:098d565e-915a-4794-a60a-d92a8391bdde", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AZQP" + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B3NX" + }, + { + "catenaXId": "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "linkedItem": { + "quantity": { + "quantityNumber": 0.2341, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } }, - { - "catenaXId": "urn:uuid:e95f3ff2-c5e7-49a5-873b-aee2728917d3", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2014, - "measurementUnit": { - "datatypeURI": null, - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:aa42c959-a79c-4350-8ff8-3126a9e984a0", - "hasAlternatives": true - }, - "aspectType": "SingleLevelBomAsBuilt", - "bpn": "BPNL00000003AYRE" - } - ] + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AZQP" + }, + { + "catenaXId": "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "linkedItem": { + "quantity": { + "quantityNumber": 0.2014, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", + "hasAlternatives": false + }, + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" + } + ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json index 75fe752934..bd63449577 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json @@ -1,46 +1,46 @@ { - "submodels" : [ - { - "identification": "urn:uuid:5fbf0548-8119-4550-852e-3c58eac4a36c", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "contractAgreementId": null, - "payload": { - "component": [ - { - "materialName": "Carbon Steel", - "recycledContent": 35, - "materialClass": "1.1.2", - "quantity": { - "unit": "unit:kilogram", - "value": 72.843 - }, - "aggregateState": "solid", - "materialAbbreviation": "CS2" - }, - { - "materialName": "Oil", - "recycledContent": 4, - "materialClass": "9.2", - "quantity": { - "unit": "unit:kilogram", - "value": 6.9 - }, - "aggregateState": "liquid", - "materialAbbreviation": "SAE40" - }, - { - "materialName": "Copper", - "recycledContent": 10, - "materialClass": "3.1", - "quantity": { - "unit": "unit:kilogram", - "value": 1.2 - }, - "aggregateState": "solid", - "materialAbbreviation": "CO7" - } - ] - } - } - ] + "submodels": [ + { + "identification": "urn:uuid:46c4b216-bedd-4161-a141-f6c218784ddf", + "aspectType": "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:N2I3YWEwYTktYzYyNS00ZjdmLWEzMjMtYmYxYTkxNThlMWUw", + "payload": { + "component": [ + { + "materialName": "Carbon Steel", + "recycledContent": 37, + "materialClass": "1.1.2", + "quantity": { + "unit": "unit:kilogram", + "value": 72.843 + }, + "aggregateState": "solid", + "materialAbbreviation": "CS2" + }, + { + "materialName": "Oil", + "recycledContent": 32, + "materialClass": "9.2", + "quantity": { + "unit": "unit:kilogram", + "value": 6.9 + }, + "aggregateState": "liquid", + "materialAbbreviation": "SAE40" + }, + { + "materialName": "Copper", + "recycledContent": 76, + "materialClass": "3.1", + "quantity": { + "unit": "unit:kilogram", + "value": 1.2 + }, + "aggregateState": "solid", + "materialAbbreviation": "CO7" + } + ] + } + } + ] } \ No newline at end of file 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 aeceb370e2..8d6c017740 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 @@ -1,71 +1,80 @@ { - "relationships" : [ { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : { - "datatypeURI" : null, - "lexicalValue" : "unit:litre" - } + "relationships": [ + { + "catenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "linkedItem": { + "quantity": { + "quantityNumber": 20.0, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "hasAlternatives": false }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9" + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B3NX" }, - "aspectType" : "SingleLevelBomAsBuilt", - "bpn" : "BPNL00000003B3NX" - }, { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : { - "datatypeURI" : null, - "lexicalValue" : "unit:kilogram" - } + { + "catenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "linkedItem": { + "quantity": { + "quantityNumber": 0.2341, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", + "hasAlternatives": false }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7e4541ea-bb0f-464c-8cb3-021abccbfaf5" + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AZQP" }, - "aspectType" : "SingleLevelBomAsBuilt", - "bpn" : "BPNL00000003AYRE" - }, { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : { - "datatypeURI" : null, - "lexicalValue" : "unit:kilogram" - } + { + "catenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "linkedItem": { + "quantity": { + "quantityNumber": 0.2014, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", + "hasAlternatives": false }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e0390640-5d3f-4e30-bfb8-05e7e802fcb0" + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003AYRE" }, - "aspectType" : "SingleLevelBomAsBuilt", - "bpn" : "BPNL00000003AZQP" - }, { - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "linkedItem" : { - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : { - "datatypeURI" : null, - "lexicalValue" : "unit:kilogram" - } + { + "catenaXId": "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "linkedItem": { + "quantity": { + "quantityNumber": 0.1908, + "measurementUnit": { + "datatypeURI": null, + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "asBuilt", + "assembledOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", + "hasAlternatives": false }, - "lifecycleContext" : "asBuilt", - "assembledOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f3964e8b-dd90-4748-bfeb-53f523b03052" - }, - "aspectType" : "SingleLevelBomAsBuilt", - "bpn" : "BPNL00000003B0Q0" - } ] + "aspectType": "SingleLevelBomAsBuilt", + "bpn": "BPNL00000003B0Q0" + } + ] } \ 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 6176e13b1e..ca9afdf015 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 @@ -1,231 +1,412 @@ { - "submodels" : [ { - "identification" : "fb455e3d-0f87-4476-bda3-7ab4ce5fea09", - "aspectType" : "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt", - "payload" : { - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "childItems" : [ { - "catenaXId" : "urn:uuid:7e4541ea-bb0f-464c-8cb3-021abccbfaf5", - "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "submodels": [ + { + "identification": "urn:uuid:1f2fd0ac-c7e1-4cb7-984d-48ea0ee4af3d", + "aspectType": "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B2OM", + "key": "manufacturerId" + }, + { + "value": "42555H1-52", + "key": "manufacturerPartId" + }, + { + "value": "NO-392235679424701475513847", + "key": "partInstanceId" + }, + { + "value": "Company 2", + "key": "company" + }, + { + "value": "Brand 2", + "key": "brand" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B2OM", + "function": "production" + } + ] }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "catenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "partTypeInformation": { + "manufacturerPartId": "42555H1-52", + "customerPartId": "42555H1-52", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Transmission", + "nameAtCustomer": "Transmission" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B3NX", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e0390640-5d3f-4e30-bfb8-05e7e802fcb0", - "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" - }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003AZQP", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } - }, { - "identification" : "c63836f1-3fdf-403e-a9b6-5ddbf8c55c9b", - "aspectType" : "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-223043329736843650243373", - "key" : "partInstanceId" - }, { - "value" : "Company 2", - "key" : "company" - }, { - "value" : "Brand 2", - "key" : "brand" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:334cce52-1f52-4bc9-9dd1-410bbe497bbc", - "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", - "nameAtManufacturer" : "Transmission", - "nameAtCustomer" : "Transmission" + "itemVersion": "04" } - } - }, { - "identification" : "8043a4a4-1e8d-4c1e-b7e5-1c563afab80e", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Carbon Steel", - "recycledContent" : 33, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 72.843 + }, + { + "identification": "urn:uuid:4388f542-6f2b-4188-a6fc-f40e63ecf32c", + "aspectType": "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:N2I3YWEwYTktYzYyNS00ZjdmLWEzMjMtYmYxYTkxNThlMWUw", + "payload": { + "catenaXId": "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "childItems": [ + { + "catenaXId": "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", + "quantity": { + "unit": "unit:kilogram", + "value": 0.2014 + }, + "hasAlternatives": false, + "businessPartner": "BPNL00000003AYRE", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "catenaXId": "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "quantity": { + "unit": "unit:piece", + "value": 20 + }, + "hasAlternatives": false, + "businessPartner": "BPNL00000003B3NX", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + }, + { + "catenaXId": "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", + "quantity": { + "unit": "unit:kilogram", + "value": 0.2341 + }, + "hasAlternatives": false, + "businessPartner": "BPNL00000003AZQP", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "identification": "urn:uuid:7dd20ad1-552c-4d39-bb1c-abb7404b212c", + "aspectType": "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "component": [ + { + "materialName": "Carbon Steel", + "recycledContent": 50, + "materialClass": "1.1.2", + "quantity": { + "unit": "unit:kilogram", + "value": 72.843 + }, + "aggregateState": "solid", + "materialAbbreviation": "CS2" + }, + { + "materialName": "Oil", + "recycledContent": 12, + "materialClass": "9.2", + "quantity": { + "unit": "unit:kilogram", + "value": 6.9 + }, + "aggregateState": "liquid", + "materialAbbreviation": "SAE40" + }, + { + "materialName": "Copper", + "recycledContent": 89, + "materialClass": "3.1", + "quantity": { + "unit": "unit:kilogram", + "value": 1.2 + }, + "aggregateState": "solid", + "materialAbbreviation": "CO7" + } + ] + } + }, + { + "identification": "urn:uuid:1a4df609-8e2f-488c-a7e3-f00e548c0d78", + "aspectType": "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "catenaXId": "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", + "childItems": [] + } + }, + { + "identification": "urn:uuid:1b721676-f106-4074-905c-f2c21029145a", + "aspectType": "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:N2I3YWEwYTktYzYyNS00ZjdmLWEzMjMtYmYxYTkxNThlMWUw", + "payload": { + "component": [ + { + "materialName": "Glue", + "materialClass": "6.2", + "quantity": { + "unit": "unit:kilogram", + "value": 2.5 + }, + "weight": "0.2341", + "materialAbbreviation": "GL338" + } + ] + } + }, + { + "identification": "urn:uuid:6f920ae9-80a6-4b6d-a4c0-6ae876798588", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "NTA2OTRiZTktNzZmNS00N2Q4LWI3ZTctNDQ2YjYyNzZkZWE2:dXJuOnV1aWQ6MTkzODIwYTktYTU4NC00NzcxLTlhYjctYmM0ZmY4Mjg2Zjlh:N2I3YWEwYTktYzYyNS00ZjdmLWEzMjMtYmYxYTkxNThlMWUw", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003AXS3", + "function": "production" + } + ] }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" - }, { - "materialName" : "Oil", - "recycledContent" : 4, - "materialClass" : "9.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 6.9 + "catenaXId": "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", + "partTypeInformation": { + "manufacturerPartId": "SC-00", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" }, - "aggregateState" : "liquid", - "materialAbbreviation" : "SAE40" - }, { - "materialName" : "Copper", - "recycledContent" : 37, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 + "itemVersion": "03" + } + }, + { + "identification": "urn:uuid:b768de63-a985-4baf-a6d6-e26c4b2cf66c", + "aspectType": "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "materialName": "Engineering Plastics", + "materialClass": "5.1", + "component": [ + { + "materialName": "PA66", + "recycledContent": 31, + "materialClass": "5.1", + "quantity": { + "unit": "unit:percent", + "value": 70 + }, + "aggregateState": "solid", + "materialAbbreviation": "PA66" + }, + { + "materialName": "GF-Faser", + "recycledContent": 74, + "materialClass": "5.1", + "quantity": { + "unit": "unit:percent", + "value": 30 + }, + "aggregateState": "solid", + "materialAbbreviation": "GF30" + } + ] + } + }, + { + "identification": "urn:uuid:1b013dbd-c709-43dc-8d44-eeb12c3caefa", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - } ] - } - }, { - "identification" : "1e3766ab-79a0-4592-a708-c5579ca8ac04", - "aspectType" : "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt", - "payload" : { - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "childItems" : [ { - "catenaXId" : "urn:uuid:f3964e8b-dd90-4748-bfeb-53f523b03052", - "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "catenaXId": "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", + "partTypeInformation": { + "manufacturerPartId": "JK-40", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" }, - "hasAlternatives" : true, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } - }, { - "identification" : "bd7012a5-8e96-4372-838e-263cf117d260", - "aspectType" : "urn:bamm:io.catenax.serial_part:1.0.1#SerialPart", - "payload" : { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "74470K4-08", - "key" : "manufacturerPartId" - }, { - "value" : "NO-550767244022562000296953", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e47f0639-8e20-4ae5-bd4a-6a07e2f106d9", - "partTypeInformation" : { - "manufacturerPartId" : "74470K4-08", - "customerPartId" : "74470K4-08", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" + "itemVersion": "02" } - } - }, { - "identification" : "e2105990-e92f-4a3c-b9d3-f1ec0dc28f2b", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "NTIER Product", - "materialClass" : "5.5", - "component" : [ { - "materialName" : "Aluminium oxide", - "recycledContent" : 1, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 60 + }, + { + "identification": "urn:uuid:686eb04e-c34e-4995-baae-a2a13c2fd42d", + "aspectType": "urn:samm:io.catenax.serial_part:3.0.0#SerialPart", + "contractAgreementId": "NGFkNjljZjctNzRhYy00MzYzLWJkNGUtZjBjYjc5MTFhNDY2:dXJuOnV1aWQ6MTU5MGU0ZDgtNjRiOS00NDUyLThjZGYtZjgyMjFmNGNlNzEz:ZWQwYjA1Y2EtZTdhMS00OWNjLTgwNzgtYWYxYWU2MWMwYjU4", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B3NX", + "key": "manufacturerId" + }, + { + "value": "08708I5-06", + "key": "manufacturerPartId" + }, + { + "value": "NO-072282005385522070609321", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU", + "sites": [ + { + "catenaXsiteId": "BPNS00000003CSGV", + "function": "production" + } + ] }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - }, { - "materialName" : "Other", - "recycledContent" : 24, - "materialClass" : "5.5.2", - "quantity" : { - "unit" : "unit:percent", - "value" : 40 + "catenaXId": "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "partTypeInformation": { + "manufacturerPartId": "08708I5-06", + "customerPartId": "08708I5-06", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" }, - "aggregateState" : "solid", - "materialAbbreviation" : "" - } ] - } - }, { - "identification" : "d0464051-3535-4ad9-93e7-f91ecac11474", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "materialName" : "Engineering Plastics", - "materialClass" : "5.1", - "component" : [ { - "materialName" : "PA66", - "recycledContent" : 30, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 70 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "PA66" - }, { - "materialName" : "GF-Faser", - "recycledContent" : 19, - "materialClass" : "5.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 30 + "itemVersion": "05" + } + }, + { + "identification": "urn:uuid:02cdc2d5-98eb-406a-951c-94b579660ec3", + "aspectType": "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "catenaXId": "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "childItems": [ + { + "catenaXId": "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", + "quantity": { + "unit": "unit:kilogram", + "value": 0.1908 + }, + "hasAlternatives": false, + "businessPartner": "BPNL00000003B0Q0", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z" + } + ] + } + }, + { + "identification": "urn:uuid:9b89f6b2-39e3-41cd-bb5f-65f87fe7e4b2", + "aspectType": "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "materialName": "NTIER Product", + "materialClass": "5.5", + "component": [ + { + "materialName": "Aluminium oxide", + "recycledContent": 41, + "materialClass": "5.5.1", + "quantity": { + "unit": "unit:percent", + "value": 60 + }, + "aggregateState": "solid", + "materialAbbreviation": "" + }, + { + "materialName": "Other", + "recycledContent": 5, + "materialClass": "5.5.2", + "quantity": { + "unit": "unit:percent", + "value": 40 + }, + "aggregateState": "solid", + "materialAbbreviation": "" + } + ] + } + }, + { + "identification": "urn:uuid:b553e542-a608-4c55-941a-5a246ff23161", + "aspectType": "urn:samm:io.catenax.batch:3.0.0#Batch", + "contractAgreementId": "ZTY1ZGNhY2MtZGQ1Ny00N2NjLWE0MjItMzU5OTMzZjg0ZWIz:dXJuOnV1aWQ6MDc4YTJiMTctMjJkZS00NTMwLWI2ODktYzYwNzNmZjRkMjA2:MzBkNDllMDgtNzFhNS00Y2E4LTg1OWEtYWIxODkzMGJjN2Qy", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "batchId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "HUR", + "sites": [ + { + "catenaXsiteId": "BPNS00000003B0Q0", + "function": "production" + } + ] }, - "aggregateState" : "solid", - "materialAbbreviation" : "GF30" - } ] - } - }, { - "identification" : "0b881281-0c15-471d-90cf-855ea3b8585f", - "aspectType" : "urn:bamm:io.catenax.single_level_bom_as_built:2.0.0#SingleLevelBomAsBuilt", - "payload" : { - "catenaXId" : "urn:uuid:e0390640-5d3f-4e30-bfb8-05e7e802fcb0", - "childItems" : [ ] - } - }, { - "identification" : "544817ae-1ea2-4614-9fdb-50c448925d51", - "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload" : { - "component" : [ { - "materialName" : "Glue", - "materialClass" : "6.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 + "catenaXId": "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", + "partTypeInformation": { + "manufacturerPartId": "QQ-78", + "partClassification": [ + { + "classificationDescription": "Standard data element types with associated classification scheme for electric components.", + "classificationStandard": "IEC", + "classificationID": "61360- 2:2012 " + } + ], + "nameAtManufacturer": "Mirror left" }, - "weight" : "0.2341", - "materialAbbreviation" : "GL338" - } ] + "itemVersion": "01" + } } - } ] + ] } \ 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 35b62aff75..8660465e5c 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 @@ -7,7 +7,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -26,7 +26,7 @@ "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", @@ -39,61 +39,61 @@ "bpn": "BPNL50096894aNXY" }, { - "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 1580.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:gram" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "childCatenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL00000003AXS3" + "bpn": "BPNL50096894aNXY" }, { - "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", "linkedItem": { "quantity": { - "quantityNumber": 1580.0, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:gram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "childCatenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", "bpn": "BPNL50096894aNXY" }, { - "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", "linkedItem": { "quantity": { "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": null, - "lexicalValue": "unit:litre" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asPlanned", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "childCatenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "hasAlternatives": false }, "aspectType": "SingleLevelBomAsPlanned", - "bpn": "BPNL50096894aNXY" + "bpn": "BPNL00000003AXS3" } ] } \ No newline at end of file diff --git a/irs-cucumber-tests/src/test/resources/expected-files/TRI-893-expected-submodels.json b/irs-cucumber-tests/src/test/resources/expected-files/TRI-893-expected-submodels.json index 7d47f7f5bf..015f05ae38 100644 --- a/irs-cucumber-tests/src/test/resources/expected-files/TRI-893-expected-submodels.json +++ b/irs-cucumber-tests/src/test/resources/expected-files/TRI-893-expected-submodels.json @@ -1,99 +1,129 @@ { "submodels": [ { - "identification": "urn:uuid:cd43ab3a-83c3-42a5-9c93-53a82223c7b8", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:b82ebca3-b462-4ad3-9cfd-d79b3958e580", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "M2U1NzRlNGEtZDhkNS00YmE3LTlhZmQtYWQ2MDBmMmY1ZjZm:dXJuOnV1aWQ6NDllYjUwMmItZTY4Yi00YjhhLTk3MjctN2M4NWRlMjUzODZh:OTA1ZWJlNGYtZTI5OC00YmU1LThiNmMtMzAyYmJiODg2Nzc0", "payload": { - "validityPeriod": { - "validFrom": "2018-08-15T15:18:04.000Z", - "validTo": "2028-05-14T00:23:55.000Z" - }, "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", "partTypeInformation": { "manufacturerPartId": "XK-34", "classification": "product", "nameAtManufacturer": "Vehicle Model C" - } - } - }, - { - "identification": "urn:uuid:8d5bcf49-7d09-4d98-a3b6-3e4253f5bb46", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", - "payload": { - "validityPeriod": { - "validFrom": "2018-09-16T00:07:10.000Z", - "validTo": "2032-01-10T15:26:52.000Z" }, - "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", - "partTypeInformation": { - "manufacturerPartId": "39478586-36", - "classification": "product", - "nameAtManufacturer": "Tier B ECU2" - } + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:6692c07a-6771-48a2-a729-331d1a488037", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:724afc8f-240f-40ad-98f0-5fa03d97164e", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "M2U1NzRlNGEtZDhkNS00YmE3LTlhZmQtYWQ2MDBmMmY1ZjZm:dXJuOnV1aWQ6NDllYjUwMmItZTY4Yi00YjhhLTk3MjctN2M4NWRlMjUzODZh:OTA1ZWJlNGYtZTI5OC00YmU1LThiNmMtMzAyYmJiODg2Nzc0", "payload": { - "validityPeriod": { - "validFrom": "2019-11-02T11:14:15.000Z", - "validTo": "2024-07-17T02:07:07.000Z" - }, "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", "partTypeInformation": { "manufacturerPartId": "123564887-01", "classification": "product", "nameAtManufacturer": "Tire Model A" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:879aef49-f000-4f1a-b749-def9d4807b22", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:e1a2222c-6d93-46d5-99d4-b3b396511179", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "MDRmZjRhZmYtZGRlOS00MmRlLWFiMmYtN2U1MzY0NDcxNTUx:dXJuOnV1aWQ6MmJhZDFjNDktNGRjMC00NDE2LWI2ZGEtZTJlODllOWQwYmY0:NDdkNGI0OGEtMGFjZS00ODE5LTk2OWYtYWYzZWU1YTg1ZWQw", "payload": { - "validityPeriod": { - "validFrom": "2019-08-17T14:14:30.000Z", - "validTo": "2032-08-30T04:32:28.000Z" - }, - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", "partTypeInformation": { - "manufacturerPartId": "6775244-06", + "manufacturerPartId": "9953421-03", "classification": "product", - "nameAtManufacturer": "Sub Tier B Glue" - } + "nameAtManufacturer": "Natural Rubber Product(40KG blocks)" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:bcfeab97-b97b-47c4-8fae-9f88e83d4579", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:26f72cc4-5a15-4b26-b3b7-323093c57a53", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "M2U1NzRlNGEtZDhkNS00YmE3LTlhZmQtYWQ2MDBmMmY1ZjZm:dXJuOnV1aWQ6NDllYjUwMmItZTY4Yi00YjhhLTk3MjctN2M4NWRlMjUzODZh:OTA1ZWJlNGYtZTI5OC00YmU1LThiNmMtMzAyYmJiODg2Nzc0", "payload": { - "validityPeriod": { - "validFrom": "2017-04-29T01:48:37.000Z", - "validTo": "2029-08-26T00:42:55.000Z" - }, - "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", "partTypeInformation": { - "manufacturerPartId": "9953421-03", + "manufacturerPartId": "39478586-36", "classification": "product", - "nameAtManufacturer": "Natural Rubber Product(40KG blocks)" - } + "nameAtManufacturer": "Tier B ECU2" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } }, { - "identification": "urn:uuid:374b82cd-8038-4feb-8ae8-f9907c082623", - "aspectType": "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned", + "identification": "urn:uuid:e16c4427-512d-455e-8baa-6cc3a7d0602c", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZWIxNmYxNDItMTUxMC00MDQyLTkyZTgtOTE5OTAwYzY5ODVj:dXJuOnV1aWQ6NDk1MGQ0ZmMtOTA5ZC00ZGNmLTg0OTYtMzg0NWQ1YmQ2Zjc2:NWI2NTdkOWQtNTIyOS00NmY2LWFkNDctZTBiZmYyMmQ2OGMw", "payload": { - "validityPeriod": { - "validFrom": "2014-02-07T16:56:02.000Z", - "validTo": "2029-08-26T11:05:18.000Z" - }, "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", "partTypeInformation": { "manufacturerPartId": "A26581-11", "classification": "product", "nameAtManufacturer": "Natural Rubber" - } + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] + } + }, + { + "identification": "urn:uuid:176135ea-f47f-49f1-a077-997bf1d44c89", + "aspectType": "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned", + "contractAgreementId": "ZWIxNmYxNDItMTUxMC00MDQyLTkyZTgtOTE5OTAwYzY5ODVj:dXJuOnV1aWQ6NDk1MGQ0ZmMtOTA5ZC00ZGNmLTg0OTYtMzg0NWQ1YmQ2Zjc2:NWI2NTdkOWQtNTIyOS00NmY2LWFkNDctZTBiZmYyMmQ2OGMw", + "payload": { + "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "partTypeInformation": { + "manufacturerPartId": "6775244-06", + "classification": "product", + "nameAtManufacturer": "Sub Tier B Glue" + }, + "partSitesInformationAsPlanned": [ + { + "functionValidUntil": "2023-12-11T06:14:55.183Z", + "catenaXsiteId": "BPNS1234567890ZZ", + "function": "production", + "functionValidFrom": "2023-12-11T06:14:55.181Z" + } + ] } } ] diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsPlanned.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsPlanned.java index a9c65c9532..cc270d2d19 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsPlanned.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelBomAsPlanned.java @@ -26,7 +26,6 @@ import java.time.ZonedDateTime; import java.util.Collection; import java.util.List; -import java.util.Map; import java.util.Optional; import java.util.Set; @@ -84,22 +83,11 @@ public Relationship toRelationship(final String catenaXId) { .lastModifiedOn(this.lastModifiedOn); if (thereIsQuantity()) { - MeasurementUnit measurementUnit = MeasurementUnit.builder().build(); - if (this.quantity.getMeasurementUnit() instanceof String str) { - measurementUnit = MeasurementUnit.builder() - .lexicalValue(str) - .build(); - } else if (this.quantity.getMeasurementUnit() instanceof Map map) { - measurementUnit = MeasurementUnit.builder() - .lexicalValue(String.valueOf(map.get("lexicalValue"))) - .datatypeURI(String.valueOf(map.get("datatypeURI"))) - .build(); - } - - linkedItem.quantity(org.eclipse.tractusx.irs.component.Quantity.builder() .quantityNumber(this.quantity.getQuantityNumber()) - .measurementUnit(measurementUnit) + .measurementUnit(MeasurementUnit.builder() + .lexicalValue(this.quantity.getMeasurementUnit()) + .build()) .build()); } @@ -125,17 +113,8 @@ private boolean thereIsQuantity() { @JsonAlias({ "quantityNumber", "value" }) private Double quantityNumber; @JsonAlias({ "measurementUnit", "unit" }) - private Object measurementUnit; - - /** - * MeasurementUnit - */ - @Data - @Jacksonized - /* package */ static class MeasurementUnit { - private String lexicalValue; - private String datatypeURI; - } + private String measurementUnit; + } } diff --git a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java index 411dc4023c..3fa88b3e53 100644 --- a/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java +++ b/irs-edc-client/src/main/java/org/eclipse/tractusx/irs/edc/client/SingleLevelUsageAsBuilt.java @@ -53,13 +53,13 @@ class SingleLevelUsageAsBuilt implements RelationshipSubmodel { private String catenaXId; - private Set customers; + private Set parentItems; + private Set customers; @Override public List asRelationships() { - return Optional.ofNullable(this.customers).stream().flatMap(Collection::stream) - .map(customer -> customer.toRelationship(this.catenaXId)) - .flatMap(Optional::stream) + return Optional.ofNullable(this.parentItems).stream().flatMap(Collection::stream) + .map(parentItem -> parentItem.toRelationship(this.catenaXId)) .toList(); } @@ -69,31 +69,16 @@ public List asRelationships() { @Data @AllArgsConstructor @NoArgsConstructor - /* package */ static class Customer { - - private String businessPartner; - private ZonedDateTime createdOn; - private ZonedDateTime lastModifiedOn; - private Set parentItems; - - public Optional toRelationship(final String catenaXId) { - return parentItems.stream().findFirst().map(parentItem -> parentItem.toRelationship(catenaXId, this.businessPartner)); - } - } - /** - * ParentData - */ - @Data - @AllArgsConstructor - @NoArgsConstructor /* package */ static class ParentItem { private String catenaXId; + private boolean isOnlyPotentialParent; private Quantity quantity; + private String businessPartner; private ZonedDateTime createdOn; private ZonedDateTime lastModifiedOn; - public Relationship toRelationship(final String catenaXId, final String businessPartner) { + public Relationship toRelationship(final String catenaXId) { final LinkedItem.LinkedItemBuilder linkedItem = LinkedItem.builder() .childCatenaXId(GlobalAssetIdentification.of(catenaXId)) .lifecycleContext(BomLifecycle.AS_BUILT) diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientTest.java index 278351ccac..0451444002 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientTest.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/EdcSubmodelClientTest.java @@ -92,7 +92,7 @@ class EdcSubmodelClientTest extends LocalTestDataConfigurationAware { private static final String ASSET_ID = "d46b51ae-08b6-42d7-a30d-0f8d118c8e0d-ce85f148-e3cf-42fe-9381-d1f276333fc4"; private static final String PROVIDER_SUFFIX = "/test"; private static final String CONNECTOR_ENDPOINT = "https://connector.endpoint.com"; - private static final String existingCatenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; + private static final String existingCatenaXId = "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf"; private final ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor(); private final TimeMachine clock = new TimeMachine(); @@ -252,7 +252,7 @@ void shouldReturnRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelBomAsSpec .getPayload(); // assert - assertThat(submodelResponse).contains("urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860"); + assertThat(submodelResponse).contains("urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab"); } @Test @@ -348,7 +348,7 @@ void shouldReturnSameRelationshipsForDifferentDirections() throws Exception { // arrange when(config.getControlplane().getProviderSuffix()).thenReturn(PROVIDER_SUFFIX); - final String parentCatenaXId = "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9"; + final String parentCatenaXId = "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df"; final BomLifecycle asBuilt = BomLifecycle.AS_BUILT; when(catalogFacade.fetchCatalogByFilter(any(), any(), any())).thenReturn( List.of(CatalogItem.builder().itemId(parentCatenaXId).build())); diff --git a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelTestdataCreatorTest.java b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelTestdataCreatorTest.java index ad4b44a8b5..43c62f4f72 100644 --- a/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelTestdataCreatorTest.java +++ b/irs-edc-client/src/test/java/org/eclipse/tractusx/irs/edc/client/SubmodelTestdataCreatorTest.java @@ -52,13 +52,13 @@ void shouldReturnSingleLevelBomAsBuiltWithoutChildrenWhenRequestingWithTestId() @Test void shouldReturnSingleLevelBomAsBuiltWithPreDefinedChildrenWhenRequestingWithCatenaXId() { - final String catenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; + final String catenaXId = "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf"; final SingleLevelBomAsBuilt singleLevelBomAsBuilt = submodelTestdataCreator.createSubmodelForId( catenaXId + "_singleLevelBomAsBuilt", SingleLevelBomAsBuilt.class); final Set childItems = singleLevelBomAsBuilt.getChildItems(); assertThat(childItems).isNotEmpty(); - final List childIDs = List.of("urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860"); + final List childIDs = List.of("urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab"); childItems.forEach(childData -> assertThat(childIDs).contains(childData.getCatenaXId())); } diff --git a/irs-models/src/main/java/org/eclipse/tractusx/irs/data/CxTestDataContainer.java b/irs-models/src/main/java/org/eclipse/tractusx/irs/data/CxTestDataContainer.java index 8b69fa469e..955a5e9b07 100644 --- a/irs-models/src/main/java/org/eclipse/tractusx/irs/data/CxTestDataContainer.java +++ b/irs-models/src/main/java/org/eclipse/tractusx/irs/data/CxTestDataContainer.java @@ -56,10 +56,10 @@ public static class CxTestData { public static final String SERIAL_PART_ASPECT_TYPE = "urn:samm:io.catenax.serial_part:3.0.0#SerialPart"; public static final String SINGLE_LEVEL_BOM_AS_BUILT_ASPECT_TYPE = "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt"; - public static final String SINGLE_LEVEL_USAGE_BUILT_ASPECT_TYPE = "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt"; + public static final String SINGLE_LEVEL_USAGE_BUILT_ASPECT_TYPE = "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt"; public static final String SINGLE_LEVEL_BOM_AS_SPECIFIED_ASPECT_TYPE = "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified"; - public static final String PART_AS_PLANNED_ASPECT_TYPE = "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned"; - public static final String SINGLE_LEVEL_BOM_AS_PLANNED_ASPECT_TYPE = "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned"; + public static final String PART_AS_PLANNED_ASPECT_TYPE = "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned"; + public static final String SINGLE_LEVEL_BOM_AS_PLANNED_ASPECT_TYPE = "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned"; public static final String BATCH_ASPECT_TYPE = "urn:samm:io.catenax.batch:3.0.0#Batch"; public static final String MATERIAL_FOR_RECYCLING_ASPECT_TYPE = "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling"; public static final String PRODUCT_DESCRIPTION_ASPECT_TYPE = "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription"; diff --git a/irs-models/src/main/resources/test_data/CX_Testdata.json b/irs-models/src/main/resources/test_data/CX_Testdata.json index a1ed35f8a7..dfe34e8703 100644 --- a/irs-models/src/main/resources/test_data/CX_Testdata.json +++ b/irs-models/src/main/resources/test_data/CX_Testdata.json @@ -1,6 +1,6 @@ { "https://catenax.io/schema/TestDataContainer/1.0.0" : [ { - "catenaXId" : "urn:uuid:76e07e0b-15e9-4279-9d19-8bee67260ce4", + "catenaXId" : "urn:uuid:25fbcb4b-5a0e-4368-be08-8e77437eb485", "bpnl" : "null", "PlainObject" : [ { "BPN_OEM_C" : "BPNL00000003AZQP", @@ -9,12 +9,12 @@ "BPN_IRS_TEST" : "BPNL00000003AWSS", "BPN_N_TIER_A" : "BPNL00000003B0Q0", "BPN_NATURAL_RUBBER_SITE_A" : "BPNS000000000001", - "BATCH_SEALANT_1" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", - "BATCH_SEALANT_2" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "BATCH_SEALANT_1" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", + "BATCH_SEALANT_2" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "AUTHOR" : "T-Systems", "BPN_NATURAL_RUBBER" : "BPNL00000007OR16", - "BATCH_GLUE_2" : "urn:uuid:70e850fd-c1cb-4418-964e-cd3ba0bb6459", - "BATCH_GLUE_1" : "urn:uuid:8d75a647-b003-46d9-9ed2-d3577cb1a171", + "BATCH_GLUE_2" : "urn:uuid:ed543e1c-bdaa-44b8-a301-fdfb0d70d0a8", + "BATCH_GLUE_1" : "urn:uuid:5f4e7c59-0ce1-40b3-9429-fe2a3efadc06", "BPN_OEM_B_SITE_A" : "BPNS000000815DMY", "BPN_OEM_A_SITE_A" : "BPNS000004711DMY", "BPN_OEM_C_SITE_A" : "BPNS000001111DMY", @@ -26,14 +26,14 @@ "BPN_TIER_A" : "BPNL00000003B2OM", "BPN_TIER_C" : "BPNL00000003CSGV", "BPN_FARM_A" : "BPNL00000003CSGV", - "SPT_MPO_LINK" : "urn:uuid:13752e97-e42f-4cd8-89b5-333615d4de5c", + "SPT_MPO_LINK" : "urn:uuid:6c661f11-e3fa-482e-810a-856c4152cd2e", "BPN_TIER_B" : "BPNL00000003B5MJ", "BPN_SUB_TIER_B" : "BPNL00000003AXS3", "BPN_SUB_TIER_A" : "BPNL00000003B3NX", - "BATCH_CATHODE_1" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "BATCH_CATHODE_2" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "BATCH_CATHODE_1" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "BATCH_CATHODE_2" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "BPN_SUB_TIER_C" : "BPNL00000000BJTL", - "CREATION_DATE" : "2024-03-15T06:19:40.513Z", + "CREATION_DATE" : "2024-04-02T08:11:35.593Z", "BPN_TIER_C_SITE_A" : "BPNS00000003CSGV", "BPN_TIER_A_SITE_A" : "BPNS00000003B2OM", "BPN_TIER_B_SITE_A" : "BPNS00000003B5MJ", @@ -42,14 +42,14 @@ "BPN_SUB_TIER_C_SITE_A" : "BPNS00000000BJTL", "BPN_FARM_SITE_A" : "BPNS000000000DQB", "BPN_N_TIER_A_SITE_A" : "BPNS00000003B0Q0", - "BATCH_POLYAMID_1" : "urn:uuid:a87b4573-048a-42e0-a0a6-86c4680c28b1", - "BATCH_POLYAMID_2" : "urn:uuid:cd81204d-f7ac-4673-833b-799ea6da60d7" + "BATCH_POLYAMID_1" : "urn:uuid:9a29e44c-af8e-4216-9e1d-a5ed96cd925f", + "BATCH_POLYAMID_2" : "urn:uuid:5f8c823a-a97f-4d54-90f4-92b3e008bd8b" } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 48, + "recycledContent" : 76, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -59,7 +59,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 31, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -69,7 +69,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 53, + "recycledContent" : 21, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -79,7 +79,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 31, + "recycledContent" : 87, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -89,7 +89,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 1, + "recycledContent" : 43, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -99,7 +99,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 86, + "recycledContent" : 20, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -109,7 +109,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 66, + "recycledContent" : 54, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -119,7 +119,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 17, + "recycledContent" : 16, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -129,7 +129,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 39, + "recycledContent" : 58, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -139,7 +139,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 7, + "recycledContent" : 13, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -150,322 +150,322 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "childItems" : [ { - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", @@ -473,33 +473,33 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "NK-28", + "value" : "TB-60", "key" : "manufacturerPartId" }, { - "value" : "OMBOCDCFHZXMZBJZC", + "value" : "OMBQATUSKJNZLHPDF", "key" : "partInstanceId" }, { - "value" : "OMBOCDCFHZXMZBJZC", + "value" : "OMBQATUSKJNZLHPDF", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2020-08-19T11:21:15.000Z", + "date" : "2015-05-27T02:47:19.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "partTypeInformation" : { - "manufacturerPartId" : "NK-28", + "manufacturerPartId" : "TB-60", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -509,12 +509,12 @@ }, "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "01", @@ -528,8 +528,8 @@ } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Kombilimousine", - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", + "bodyVariant" : "Schräghecklimousine", + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", "engine" : { "size" : 2998, "power" : 143 @@ -539,14 +539,6 @@ "vehicleModel" : "Vehicle Fully Electric", "productionDateGMT" : "2010-01-01", "equipmentVariants" : [ { - "code" : "S2AVB", - "description" : "adaptive drive", - "group" : "special equipment" - }, { - "code" : "S763C", - "description" : "sport package", - "group" : "special equipment" - }, { "code" : "A01CR", "description" : "remote engine start", "group" : "special equipment" @@ -554,44 +546,52 @@ "code" : "S378B", "description" : "integrated child seats", "group" : "special equipment" + }, { + "code" : "S388C", + "description" : "security plus", + "group" : "special equipment" + }, { + "code" : "A458D", + "description" : "parking assistance ", + "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2014-11-14", + "mileageTimestamp" : "2020-08-27", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "84513", + "orderNumber" : "443023", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 9 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "6226", + "referencedStandard" : "JIS", + "referencedStandardID" : "8031", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -602,18 +602,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -638,7 +638,7 @@ "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-066647475705439133590731", + "value" : "NO-237946004780203051455167", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -655,7 +655,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -670,16 +670,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "assetId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", "partTypeInformation" : { "ownerPartId" : "73849201-61", "partVersion" : "04", @@ -692,31 +692,29 @@ "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1dae4a21-4496-4091-ae0c-24da1fa65b41", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e7777066-e453-4431-beb3-4e99d042f923", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "childItems" : [ { - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -724,35 +722,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "493373", + "orderNumber" : "771141", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4467", + "referencedStandard" : "IS", + "referencedStandardID" : "4984", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -761,30 +759,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -799,7 +797,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-070860464145139398402631", + "value" : "NO-132222698930095466785219", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -816,7 +814,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -828,10 +826,10 @@ "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "assetId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -840,29 +838,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ca454f06-e3ac-4908-8632-0fece3946e62", + "ownerItemId" : "urn:uuid:c4ae951f-b68d-462b-a58c-c029cc926630", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "childassetId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", "partTypeInformation" : { "ownerPartId" : "22782277-50", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door front-left", "partClassification" : [ { @@ -872,27 +870,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "86681316RUO", + "value" : "82227044FBE", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -903,7 +899,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -916,10 +912,10 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "358518", + "orderNumber" : "945951", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -928,23 +924,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5674", + "referencedStandard" : "EN", + "referencedStandardID" : "8592", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -953,30 +949,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -991,7 +987,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-747120479071756798529531", + "value" : "NO-073366714159387479576634", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -1002,7 +998,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -1017,16 +1013,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "assetId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", "partTypeInformation" : { "ownerPartId" : "95657762-59", "partVersion" : "05", @@ -1039,31 +1035,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b03e4631-d40c-489d-bfeb-54b0a0b89c4c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6d2d642-a055-4ddf-87e3-1a3b02c689e3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:1ad0892a-59c1-4118-8b52-601540973f31", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0903baa-21f1-4a8d-b5ad-e2cf0978820a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "childItems" : [ { - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -1071,35 +1065,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "909852", + "orderNumber" : "312850", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "6025", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7758", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1108,10 +1102,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -1121,17 +1115,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -1146,7 +1140,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-717125314697526511835089", + "value" : "NO-308061107177299146814515", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -1163,7 +1157,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -1175,10 +1169,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "assetId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -1187,29 +1181,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5bec6e30-f1be-49b1-9a80-d6d6da5780fe", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:7c208541-f36d-460d-a4df-f8884fdbe570", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "childassetId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -1219,27 +1213,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "50695399XFB", + "value" : "40618807ZDZ", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -1250,7 +1242,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -1263,35 +1255,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "820213", + "orderNumber" : "915196", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "3619", + "referencedStandard" : "JIS", + "referencedStandardID" : "3960", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1302,28 +1294,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -1338,7 +1330,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-933249529973009274367708", + "value" : "NO-549219340251150430970046", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -1349,7 +1341,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -1361,22 +1353,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "assetId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -1386,53 +1378,51 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6de0ef6a-726d-4dfc-9ccb-26425846a216", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dec92d8e-c156-446f-91b1-b960fc7373d4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b84ef907-c98d-4e3f-be20-323dd67b0914", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:16cc41c3-f919-476b-9bae-d1d9c2141217", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "866717", + "orderNumber" : "723729", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4399", + "referencedStandard" : "DIN", + "referencedStandardID" : "3768", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1441,10 +1431,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -1454,7 +1444,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -1464,7 +1454,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -1479,7 +1469,7 @@ "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-935348299524699268826561", + "value" : "NO-333852895168705794472199", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -1490,7 +1480,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -1502,22 +1492,22 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "assetId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { @@ -1527,53 +1517,51 @@ "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:02813783-688b-439a-b5f3-bfeca0266dee", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bc19b78d-8213-4a7f-bbfb-6d1cacebc737", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "829696", + "orderNumber" : "570273", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4314", + "referencedStandard" : "AS", + "referencedStandardID" : "4897", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1582,10 +1570,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -1599,13 +1587,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -1620,7 +1608,7 @@ "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-312287171739061318684731", + "value" : "NO-118749418886331961020320", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -1637,7 +1625,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -1649,22 +1637,22 @@ "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "assetId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", "partTypeInformation" : { "ownerPartId" : "28673126-98", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Door rear-right", "partClassification" : [ { @@ -1674,53 +1662,51 @@ "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74ac6588-6c01-4467-a44a-38b703333f40", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:84aad2ac-24cc-4853-94cf-c503124c517c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "853381", + "orderNumber" : "765846", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "3642", + "referencedStandardID" : "3939", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1729,30 +1715,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -1767,7 +1753,7 @@ "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-512057047299506284822846", + "value" : "NO-667678187568709354492498", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -1784,7 +1770,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -1796,22 +1782,22 @@ "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "assetId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", "partTypeInformation" : { "ownerPartId" : "94421589-82", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Engine hood", "partClassification" : [ { @@ -1821,53 +1807,51 @@ "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1453851-c310-4e9b-bc90-de8d80faf665", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5650b0e-ff2e-4a89-ad26-0d081d3bda2b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "998741", + "orderNumber" : "182206", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9870", + "referencedStandard" : "AISI", + "referencedStandardID" : "1088", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -1878,28 +1862,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -1914,7 +1898,7 @@ "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-935241026522592720471442", + "value" : "NO-148296997357787499803562", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -1925,7 +1909,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -1937,22 +1921,22 @@ "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "assetId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", "partTypeInformation" : { "ownerPartId" : "85023955-75", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Tailgate", "partClassification" : [ { @@ -1962,28 +1946,26 @@ "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b077c89-1e83-4721-bea3-8b4740735acf", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:14cef013-a2a4-40e7-aefd-924770afc9a6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "712288", + "orderNumber" : "245958", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -1992,13 +1974,13 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -2007,8 +1989,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "2045", + "referencedStandard" : "EN", + "referencedStandardID" : "4391", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2017,10 +1999,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -2030,7 +2012,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -2055,7 +2037,7 @@ "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-797225775878072083424960", + "value" : "NO-239887722158455392857917", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2066,7 +2048,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -2078,22 +2060,22 @@ "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "assetId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", "partTypeInformation" : { "ownerPartId" : "13769860-47", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -2103,53 +2085,51 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:07faca94-81d0-4e54-a8ed-576aa0c30169", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:af044358-a186-4207-9dfb-0b63e3d02c9e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "966218", + "orderNumber" : "232353", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 8 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3912", + "referencedStandard" : "AS", + "referencedStandardID" : "7191", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2160,28 +2140,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -2196,7 +2176,7 @@ "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-448918216597975248405544", + "value" : "NO-068706319098702362453776", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2207,7 +2187,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -2219,22 +2199,22 @@ "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "assetId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", "partTypeInformation" : { "ownerPartId" : "36643162-35", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -2244,43 +2224,41 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26431661-a2e4-4959-845c-19977feecac2", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a23ccabc-c57c-4baa-9478-04848936e20d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "164297", + "orderNumber" : "506123", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 7 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -2289,8 +2267,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7329", + "referencedStandard" : "EN", + "referencedStandardID" : "3352", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2301,8 +2279,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -2312,17 +2290,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -2337,7 +2315,7 @@ "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-234316605230590922467140", + "value" : "NO-846173490949169497250957", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2348,7 +2326,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -2360,22 +2338,22 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "assetId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { @@ -2385,53 +2363,51 @@ "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5760843-2a93-4b6b-9446-5c8a3da8ac89", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:373aa18f-5d8b-499d-babf-1d68e4d5908f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "698262", + "orderNumber" : "771678", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6642", + "referencedStandard" : "JIS", + "referencedStandardID" : "1311", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2447,23 +2423,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -2478,7 +2454,7 @@ "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-561770140107022421469955", + "value" : "NO-264045982210489399185810", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2489,7 +2465,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -2501,22 +2477,22 @@ "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "assetId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", "partTypeInformation" : { "ownerPartId" : "22768257-25", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Bumper rear", "partClassification" : [ { @@ -2526,53 +2502,51 @@ "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc5e7396-0f1f-4fd9-8d0e-eb69b7c9e35b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f647afa4-6ad9-402b-8ca9-dfeb676501e4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "685035", + "orderNumber" : "332436", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "5253", + "referencedStandard" : "AS", + "referencedStandardID" : "4569", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2583,7 +2557,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { @@ -2594,17 +2568,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -2619,7 +2593,7 @@ "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-472963873349845436443693", + "value" : "NO-538314032599018242331006", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2630,7 +2604,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -2642,22 +2616,22 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "assetId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { @@ -2667,41 +2641,39 @@ "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:740a74a6-dd24-44d7-aeea-0fcc5b42d833", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "762163", + "orderNumber" : "258674", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -2712,8 +2684,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "3630", + "referencedStandard" : "JIS", + "referencedStandardID" : "1817", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2722,24 +2694,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -2760,7 +2732,7 @@ "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-498373680403428328935294", + "value" : "NO-993176322579834430064051", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2771,7 +2743,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -2783,22 +2755,22 @@ "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "assetId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", "partTypeInformation" : { "ownerPartId" : "58471477-24", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Exterior mirror right", "partClassification" : [ { @@ -2808,53 +2780,51 @@ "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d617833d-1bf2-42c7-a6b3-87e11bbc5003", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:207a0c9e-f0b7-458e-bf9c-bea39d9074a7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "430687", + "orderNumber" : "258165", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "8728", + "referencedStandard" : "ASME", + "referencedStandardID" : "4484", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -2866,27 +2836,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -2901,7 +2871,7 @@ "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-814540334583663330747432", + "value" : "NO-781615740005254426594801", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -2912,7 +2882,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -2924,22 +2894,22 @@ "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "assetId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", "partTypeInformation" : { "ownerPartId" : "09002013-68", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Tailer coupling", "partClassification" : [ { @@ -2949,53 +2919,51 @@ "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:395f8e7f-c101-4013-b2e2-bf93d87576aa", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a91e02c9-bc31-4f37-a7f7-9af4024e5a0e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "313504", + "orderNumber" : "62959", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1917", + "referencedStandard" : "GB", + "referencedStandardID" : "4817", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3004,10 +2972,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -3017,7 +2985,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -3027,7 +2995,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -3042,7 +3010,7 @@ "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-909562885178693699037440", + "value" : "NO-629305707358689604279789", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3053,7 +3021,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -3065,22 +3033,22 @@ "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "assetId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", "partTypeInformation" : { "ownerPartId" : "43501996-98", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Dashboard", "partClassification" : [ { @@ -3090,53 +3058,51 @@ "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b272c70-f004-4b09-98d0-ba8f4ff9bc93", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3030a83b-2885-4243-98f0-be0ec8265c34", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "511397", + "orderNumber" : "686294", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2060", + "referencedStandard" : "JASO", + "referencedStandardID" : "4147", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3145,10 +3111,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -3158,17 +3124,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -3183,7 +3149,7 @@ "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-859483763601915613763162", + "value" : "NO-667158461405603139778847", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3194,7 +3160,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -3206,22 +3172,22 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "assetId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { @@ -3231,53 +3197,51 @@ "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6e115d78-e7a4-4771-ac12-e653a2309c5e", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a3f00cc-e692-4109-85af-ffea51c0c1ff", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "618145", + "orderNumber" : "506656", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 26 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "9419", + "referencedStandard" : "EN", + "referencedStandardID" : "5150", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3286,30 +3250,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -3324,7 +3288,7 @@ "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-381058856694394911749515", + "value" : "NO-627875351311372739950698", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3335,7 +3299,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -3347,22 +3311,22 @@ "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "assetId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", "partTypeInformation" : { "ownerPartId" : "20125432-59", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Indicator left", "partClassification" : [ { @@ -3372,53 +3336,51 @@ "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6fb0d80-a5e6-40fd-9db4-7e700bb219bc", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4b2f6021-5885-4059-b6e7-b4e735f05acf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "878250", + "orderNumber" : "23664", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4207", + "referencedStandard" : "EN", + "referencedStandardID" : "7686", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3429,12 +3391,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -3450,7 +3412,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -3465,7 +3427,7 @@ "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-738810714196805495613608", + "value" : "NO-405115979688970854791474", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3476,7 +3438,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -3491,16 +3453,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "assetId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", "partTypeInformation" : { "ownerPartId" : "19073706-76", "partVersion" : "03", @@ -3513,53 +3475,51 @@ "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9851aa5c-6e9c-41aa-885a-2ca3b2fd87e9", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e4a3f3a-2fa3-4dcf-864a-3a6c65f6e79d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "970830", + "orderNumber" : "109366", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "7314", + "referencedStandard" : "GB", + "referencedStandardID" : "4902", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3568,30 +3528,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -3606,7 +3566,7 @@ "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-706869576108504911888487", + "value" : "NO-547789641918425235492602", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3617,7 +3577,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -3632,16 +3592,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "assetId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", "partTypeInformation" : { "ownerPartId" : "45415162-57", "partVersion" : "04", @@ -3654,43 +3614,41 @@ "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b6bf75b4-bf5f-4e38-bc7f-57d81f457bf1", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0a69149d-eb8c-4332-a197-34daec75dba2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "190425", + "orderNumber" : "229623", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -3699,8 +3657,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "6691", + "referencedStandard" : "JASO", + "referencedStandardID" : "8668", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3709,30 +3667,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -3747,7 +3705,7 @@ "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-302124803790642780585327", + "value" : "NO-162319335483232292850947", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3758,7 +3716,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -3770,22 +3728,22 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "assetId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { @@ -3795,53 +3753,51 @@ "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d5824d8-c2c9-4b32-a00d-b076da9fc2d6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f01ab02b-6861-40c5-a4c9-d6ed35b7fedd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "172988", + "orderNumber" : "701102", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7711", + "referencedStandard" : "GB", + "referencedStandardID" : "9337", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3852,12 +3808,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -3867,7 +3823,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -3888,7 +3844,7 @@ "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-522630666682237918821842", + "value" : "NO-517838736103503680241432", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -3899,7 +3855,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -3911,22 +3867,22 @@ "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "assetId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", "partTypeInformation" : { "ownerPartId" : "81324139-23", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Alternator", "partClassification" : [ { @@ -3936,43 +3892,41 @@ "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0e922597-4147-488f-9875-3a1ef9ad408b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e7a45da-8fd5-4204-adfd-88cf8e36e37a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "532019", + "orderNumber" : "397516", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -3981,8 +3935,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2963", + "referencedStandard" : "ASME", + "referencedStandardID" : "8128", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -3991,24 +3945,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -4029,7 +3983,7 @@ "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-756871575834670298298957", + "value" : "NO-863929753905373967106622", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4040,7 +3994,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -4052,22 +4006,22 @@ "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "assetId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", "partTypeInformation" : { "ownerPartId" : "57929013-09", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Air conditioning compressor", "partClassification" : [ { @@ -4077,53 +4031,51 @@ "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc5937f2-b033-4146-b291-451ff1bdca68", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:21e09e0d-2d8f-499c-9bf2-4c1be0044be1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "131076", + "orderNumber" : "899356", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5508", + "referencedStandard" : "GB", + "referencedStandardID" : "9599", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4132,20 +4084,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -4155,7 +4107,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -4170,7 +4122,7 @@ "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-524620221933669424039127", + "value" : "NO-573486511202825465909783", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4181,7 +4133,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -4193,22 +4145,22 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "assetId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { @@ -4218,43 +4170,41 @@ "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c69d211-682d-4972-913f-46db6c7486ac", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:51437dc2-5557-49f8-9c17-a057cb3e62b7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "696401", + "orderNumber" : "524594", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -4264,7 +4214,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "2883", + "referencedStandardID" : "9853", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4273,10 +4223,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -4286,11 +4236,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -4311,7 +4261,7 @@ "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-613060820318211072608449", + "value" : "NO-039945475879396863733510", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4322,7 +4272,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -4334,22 +4284,22 @@ "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "assetId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", "partTypeInformation" : { "ownerPartId" : "78744126-74", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Taillight front", "partClassification" : [ { @@ -4359,53 +4309,51 @@ "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:18c13b23-5098-422a-9347-8afbf718bb6d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7dd40724-5338-4d8d-a5ae-bb602f7e9fb7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "988355", + "orderNumber" : "821061", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ISO", - "referencedStandardID" : "6092", + "referencedStandardID" : "6622", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4414,7 +4362,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 @@ -4427,7 +4375,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -4437,7 +4385,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -4452,7 +4400,7 @@ "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-295509185072402053464558", + "value" : "NO-967002501485712008404139", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4463,7 +4411,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -4478,16 +4426,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "assetId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", "partTypeInformation" : { "ownerPartId" : "12093297-03", "partVersion" : "03", @@ -4500,53 +4448,51 @@ "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2f5052c4-5f41-4caa-862b-ea54fb9b5bc7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0e2f3906-e606-481e-bcf1-d7fd13f3a32b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "173380", + "orderNumber" : "369659", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5710", + "referencedStandard" : "DIN", + "referencedStandardID" : "9329", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4555,24 +4501,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -4593,7 +4539,7 @@ "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-771993242485837410678109", + "value" : "NO-838288806889001789093226", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4604,7 +4550,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -4616,22 +4562,22 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "assetId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { @@ -4641,37 +4587,35 @@ "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8e209c83-f068-49ed-87af-48ad2e69ccba", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f543da9b-1716-4e41-b63d-e7819b133ce5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "510968", + "orderNumber" : "362481", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -4682,12 +4626,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5089", + "referencedStandard" : "ISO", + "referencedStandardID" : "8155", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4696,30 +4640,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -4734,7 +4678,7 @@ "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-403886949080884450587727", + "value" : "NO-878652606269557322711382", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4745,7 +4689,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -4760,16 +4704,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "assetId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", "partTypeInformation" : { "ownerPartId" : "00871379-44", "partVersion" : "04", @@ -4782,41 +4726,39 @@ "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:037f89cb-eb9d-4026-8587-c086dbbbd4af", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6354d4d6-3cb7-47b3-8c3c-e9201d89b22f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "632367", + "orderNumber" : "950180", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -4827,8 +4769,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "6913", + "referencedStandard" : "JIS", + "referencedStandardID" : "7573", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4840,21 +4782,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -4875,7 +4817,7 @@ "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-567537304722173805639181", + "value" : "NO-101499617029308483778470", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -4886,7 +4828,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -4898,22 +4840,22 @@ "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "assetId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", "partTypeInformation" : { "ownerPartId" : "08901347-87", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Rims", "partClassification" : [ { @@ -4923,28 +4865,26 @@ "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a1c0271-6cf3-4548-876b-0b9b8b926bf0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e878d692-9393-4ed7-bc1c-0b7fae934403", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "449891", + "orderNumber" : "225420", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -4953,23 +4893,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "9043", + "referencedStandard" : "DIN", + "referencedStandardID" : "2633", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -4978,30 +4918,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -5016,7 +4956,7 @@ "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-754930692443785638020334", + "value" : "NO-215625412208452667296362", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -5027,7 +4967,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -5039,22 +4979,22 @@ "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "assetId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", "partTypeInformation" : { "ownerPartId" : "45863316-60", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Tires", "partClassification" : [ { @@ -5064,28 +5004,26 @@ "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d2f5ce1c-0f5b-473a-a36d-1918d553a203", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:62ef6377-0609-4d2c-b8b1-cabe262cf590", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 19, + "recycledContent" : 50, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -5095,7 +5033,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 51, + "recycledContent" : 12, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -5105,7 +5043,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 57, + "recycledContent" : 89, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -5116,32 +5054,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "childItems" : [ { - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -5149,35 +5087,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "514312", + "orderNumber" : "949914", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1780", + "referencedStandard" : "ASME", + "referencedStandardID" : "4026", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5188,18 +5126,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -5209,7 +5147,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -5224,7 +5162,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-971749365763688998182907", + "value" : "NO-392235679424701475513847", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -5241,7 +5179,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -5253,29 +5191,29 @@ "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "assetId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:071a570c-7f67-441d-b6f5-7c9b8a54ac8e", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:4e212a8e-72ef-48cc-8560-a62dd2729a72", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "childassetId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -5284,17 +5222,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2ecd94b8-ca32-4e01-81be-58d0e8cba1e6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:eb5bf3b0-a8d2-4e56-bdc1-e48b9b53e74c", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "childassetId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -5303,17 +5241,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4f3a4c9b-0ca3-440e-8ca0-650e2304dc91", + "ownerItemId" : "urn:uuid:94d79869-ca34-40ac-a279-1c5d680b901c", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "childassetId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -5326,24 +5264,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -5385,10 +5305,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", "identification" : { "localIdentifiers" : [ { - "value" : "NO-971749365763688998182907", + "value" : "NO-392235679424701475513847", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -5454,22 +5374,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -5477,7 +5413,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 24, + "recycledContent" : 31, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -5487,7 +5423,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 40, + "recycledContent" : 74, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -5497,35 +5433,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "914874", + "orderNumber" : "322383", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "9797", + "referencedStandard" : "AS", + "referencedStandardID" : "1157", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5534,10 +5470,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -5547,11 +5483,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -5565,7 +5501,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "assetId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -5582,27 +5518,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "partTypeInformation" : { - "manufacturerPartId" : "IS-82", + "manufacturerPartId" : "JK-40", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -5612,31 +5548,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b9d8367-efcc-4c3f-8129-1c67595fe284", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0218c3f2-2f70-457c-acc8-b70f1ee53d43", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "childItems" : [ { - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -5644,23 +5578,23 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "183972", + "orderNumber" : "441704", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -5671,8 +5605,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "5873", + "referencedStandard" : "JIS", + "referencedStandardID" : "1678", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5688,23 +5622,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -5716,10 +5650,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "18676V9-48", + "value" : "08708I5-06", "key" : "manufacturerPartId" }, { - "value" : "NO-695360115480032480516118", + "value" : "NO-072282005385522070609321", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -5730,10 +5664,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "partTypeInformation" : { - "manufacturerPartId" : "18676V9-48", - "customerPartId" : "18676V9-48", + "manufacturerPartId" : "08708I5-06", + "customerPartId" : "08708I5-06", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -5742,10 +5676,10 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "assetId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -5754,29 +5688,29 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4e7a7f9b-5acc-4bc6-a4f5-82b5dda8bc7d", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:55c9596d-12bd-4673-88bb-76f5d798fd48", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "childassetId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", "partTypeInformation" : { - "ownerPartId" : "18676V9-48", - "partVersion" : "04", + "ownerPartId" : "08708I5-06", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -5786,22 +5720,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -5809,7 +5741,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 8, + "recycledContent" : 41, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -5819,7 +5751,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 84, + "recycledContent" : 5, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -5829,35 +5761,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "864400", + "orderNumber" : "77511", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1916", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "8791", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -5869,7 +5801,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -5879,17 +5811,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -5897,7 +5829,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "assetId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -5914,9 +5846,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "partTypeInformation" : { - "manufacturerPartId" : "RT-04", + "manufacturerPartId" : "QQ-78", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -5924,17 +5856,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -5944,26 +5876,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2ff3d1d-565b-47bc-bfcd-3f12fcaff189", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:76ad44b1-89bc-47e3-ad84-b668a7899515", + "parentItems" : [ { + "catenaXId" : "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:54da275e-5f56-4a28-91da-a201213ea3bd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -5978,35 +5908,35 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "284458", + "orderNumber" : "566590", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4331", + "referencedStandard" : "GB", + "referencedStandardID" : "1830", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6018,27 +5948,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -6046,7 +5976,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "assetId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -6063,9 +5993,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "partTypeInformation" : { - "manufacturerPartId" : "VP-89", + "manufacturerPartId" : "SC-00", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6075,12 +6005,12 @@ }, "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "03", @@ -6093,28 +6023,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cadaa056-02cf-448e-9ce4-99f6c7601eac", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ee9b9c9e-1416-45a3-b683-d98d5d88e548", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e097c30e-9010-4eb9-8a8c-064736aceab8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:788cc369-6180-4bd0-b218-4401dc13fcf7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 65, + "recycledContent" : 56, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -6125,32 +6053,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "childItems" : [ { - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -6158,19 +6086,19 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "213226", + "orderNumber" : "87951", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -6181,12 +6109,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5794", + "referencedStandard" : "GB", + "referencedStandardID" : "7162", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6198,27 +6126,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -6230,10 +6158,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "56278T7-12", + "value" : "43954M5-06", "key" : "manufacturerPartId" }, { - "value" : "NO-014305725252821672580588", + "value" : "NO-840583801183834314235504", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -6244,10 +6172,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "partTypeInformation" : { - "manufacturerPartId" : "56278T7-12", - "customerPartId" : "56278T7-12", + "manufacturerPartId" : "43954M5-06", + "customerPartId" : "43954M5-06", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6256,10 +6184,10 @@ "nameAtManufacturer" : "ECU", "nameAtCustomer" : "ECU" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "assetId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -6268,17 +6196,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0ddcd695-9464-464a-b487-14a53f36023a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:344c23d8-4096-4c83-94f5-7186efdcea85", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "childassetId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -6287,17 +6215,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:aa426b78-e61f-4c95-90c3-635f9ebc0233", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:d2c5dce4-80bb-4a9b-872d-5ab0a2c6e078", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "childassetId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -6306,29 +6234,29 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d33b687a-7663-42c5-98a4-39eddc9ff979", + "ownerItemId" : "urn:uuid:cfec0646-aa46-4837-b166-8b8c34bc6ee5", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "childassetId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", "partTypeInformation" : { - "ownerPartId" : "56278T7-12", - "partVersion" : "02", + "ownerPartId" : "43954M5-06", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "ECU", "partClassification" : [ { @@ -6338,22 +6266,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6361,7 +6287,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 25, + "recycledContent" : 65, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -6371,7 +6297,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 77, + "recycledContent" : 5, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -6381,35 +6307,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "540047", + "orderNumber" : "620887", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7664", + "referencedStandard" : "JASO", + "referencedStandardID" : "5584", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6420,28 +6346,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -6449,7 +6375,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "assetId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -6466,9 +6392,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "partTypeInformation" : { - "manufacturerPartId" : "ID-97", + "manufacturerPartId" : "TK-01", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6476,17 +6402,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -6496,31 +6422,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aee000a7-0a82-41a0-a7fc-207a9bd613c7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68da2386-7a95-4307-8ad1-b841ea2f4745", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "childItems" : [ { - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -6528,10 +6452,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "24984", + "orderNumber" : "237131", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -6540,23 +6464,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "7508", + "referencedStandard" : "AISI", + "referencedStandardID" : "4914", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6568,27 +6492,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -6600,10 +6524,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "80422J1-66", + "value" : "02059V6-96", "key" : "manufacturerPartId" }, { - "value" : "NO-114299309749179970389865", + "value" : "NO-099904543678137082014006", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -6614,10 +6538,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "partTypeInformation" : { - "manufacturerPartId" : "80422J1-66", - "customerPartId" : "80422J1-66", + "manufacturerPartId" : "02059V6-96", + "customerPartId" : "02059V6-96", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6626,41 +6550,41 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "assetId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a66063b1-92d4-42f1-b551-b04f4bc4e8e9", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4bf74a73-4319-4bdc-bc00-5f265a9240d6", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "childassetId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", "partTypeInformation" : { - "ownerPartId" : "80422J1-66", - "partVersion" : "02", + "ownerPartId" : "02059V6-96", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -6670,22 +6594,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6693,7 +6615,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 63, + "recycledContent" : 46, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -6703,7 +6625,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 16, + "recycledContent" : 26, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -6713,10 +6635,10 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "631562", + "orderNumber" : "341811", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -6725,23 +6647,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "2022", + "referencedStandard" : "JASO", + "referencedStandardID" : "6684", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6753,27 +6675,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -6781,7 +6703,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "assetId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -6798,27 +6720,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "partTypeInformation" : { - "manufacturerPartId" : "HP-63", + "manufacturerPartId" : "JC-28", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -6828,22 +6750,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:62b0ea94-b84e-4a12-a7ec-a636df29146f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0669d2b5-6a25-453b-ba96-3fdf42797c2d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:59502115-9f03-48b7-871e-b9c6015c5563", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d0df5c09-5c7b-4f22-b524-58151d3a9861", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -6851,7 +6771,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 19, + "recycledContent" : 72, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -6861,7 +6781,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 70, + "recycledContent" : 71, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -6871,35 +6791,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "744179", + "orderNumber" : "420685", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9997", + "referencedStandard" : "ASME", + "referencedStandardID" : "3633", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -6908,30 +6828,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -6943,24 +6863,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "63678I1-57", + "value" : "56721H1-81", "key" : "manufacturerPartId" }, { - "value" : "NO-265189266576051308905480", + "value" : "NO-505064196503133330376728", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "partTypeInformation" : { - "manufacturerPartId" : "63678I1-57", - "customerPartId" : "63678I1-57", + "manufacturerPartId" : "56721H1-81", + "customerPartId" : "56721H1-81", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -6972,18 +6892,18 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "assetId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", "partTypeInformation" : { - "ownerPartId" : "63678I1-57", + "ownerPartId" : "56721H1-81", "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Engineering Plastics", @@ -6994,25 +6914,87 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f369d96e-cae2-4cab-9e33-63cd3bf61303", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e26d246-8a53-47ea-81ba-7d1d5d41f30b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8f470b08-7a2b-4aee-ae50-dea408343a5c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:9369da62-c452-426b-9a20-a0c2dc234be6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "childItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { @@ -7022,7 +7004,7 @@ "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-934355851064683759352825", + "value" : "NO-176599588259345153547203", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -7039,7 +7021,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -7051,7 +7033,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -7090,7 +7072,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-934355851064683759352825", + "oeNumber" : "NO-176599588259345153547203", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -7103,7 +7085,7 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", + "assetId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -7112,17 +7094,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e71d7b26-4f7a-4905-bf3e-0df598badc01", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:586a8aa7-7c45-4bea-b374-3c08c5e719f1", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "childassetId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7131,17 +7113,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5237a522-3fa1-4af1-a8d9-ab0aa82e13cc", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:59b8dd32-9f49-4870-809d-35d3b3821b29", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "childassetId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7150,17 +7132,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:01c089eb-b189-476a-9acb-323a7bc8e19a", + "ownerItemId" : "urn:uuid:47488bbe-ef93-49f0-a235-9eb99c74b14e", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "childassetId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7169,17 +7151,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8aefd359-d90a-4c0f-abbb-e99faeeba771", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5bf80483-20ad-4a82-b6a8-27b5612a21e7", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "childassetId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7188,17 +7170,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ca3056fe-a946-405b-9966-c4b930d7acdd", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:316b802c-f237-456d-a5bf-2adcb9a78a33", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "childassetId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -7207,17 +7189,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7bb21073-8689-4939-b3b8-85d9fdbd2ae3", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:f00b5c8b-698a-406e-b93e-6b5d21f76054", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "childassetId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -7252,17 +7234,17 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-04-15", - "version" : 1.3, - "status" : "Invalid" + "issueDate" : "2023-03-18", + "version" : 1.6, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1704.0408, - "width" : 1704, - "length" : 2025, - "weight" : 533, - "height" : 278 + "diameter" : 1472.0566, + "width" : 1472, + "length" : 2188, + "weight" : 420, + "height" : 282 }, "lifespan" : { "unit" : "unit:year", @@ -7270,18 +7252,18 @@ } }, "commercial" : { - "placedOnMarket" : "2020-04-10", + "placedOnMarket" : "2022-07-17", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-934355851064683759352825", + "value" : "NO-176599588259345153547203", "key" : "PartInstanceID" } ], - "gtin" : " 94050133", + "gtin" : " 18345539", "additionalCode" : [ { "name" : "TARIC", - "value" : "516138614" + "value" : "384881233" } ] }, "sources" : { @@ -7303,7 +7285,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "Compliance", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -7332,12 +7314,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-06-09", + "date" : "2023-11-07", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -7348,9 +7330,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 2.9809 ] + "left" : [ 6.7514 ] }, - "id" : "PP9529" + "id" : "PP5462" } ] }, "additionalData" : [ { @@ -7376,9 +7358,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Others" + "name" : "UV Varnish" } ], - "critical" : [ "Lithium" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -7388,39 +7370,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 109 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:864949ea-d7ac-4a1e-9644-711e02792d95", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 81, + "recycledContent" : 73, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -7430,7 +7413,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 46, + "recycledContent" : 36, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -7440,7 +7423,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 19, + "recycledContent" : 37, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -7450,97 +7433,33 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "childItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "752234", + "orderNumber" : "782876", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "8442", + "referencedStandard" : "AISI", + "referencedStandardID" : "1473", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -7549,54 +7468,36 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -7822,7 +7723,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-934355851064683759352825", + "batteryIDDMCCode" : "NO-176599588259345153547203", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -7841,6 +7742,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AVTH" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -7856,7 +7772,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 35, + "recycledContent" : 9, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -7866,7 +7782,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 29, + "recycledContent" : 88, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -7876,7 +7792,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 36, + "recycledContent" : 59, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -7887,112 +7803,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -8000,19 +7916,19 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "955212", + "orderNumber" : "227352", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -8023,12 +7939,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "5228", + "referencedStandardID" : "5682", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -8039,28 +7955,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -8075,7 +7991,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-919179362377079580444521", + "value" : "NO-201987510441217567632862", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -8086,7 +8002,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -8098,10 +8014,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", + "assetId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -8110,17 +8026,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:673c28c2-708b-433f-82db-56e61f8f66ca", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:5d0083b0-ffc7-4432-bf75-0643b15cbfcb", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8129,17 +8045,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9f534261-dfb6-4baa-b8a7-ae313aa5b3ce", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ff1db697-f654-4d63-875c-a0d6c83fcb05", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "childassetId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8148,17 +8064,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0f89bb5e-a93f-4fdc-87be-2abf0129cc33", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:b0ef57d3-c5ff-4f05-a0eb-85d4ca70d926", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "childassetId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8167,17 +8083,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fac73553-c929-43c8-a4db-6a916522a098", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e7c62e43-e4f6-43a5-9feb-f111fce490f8", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "childassetId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8186,17 +8102,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:796ea6f2-4b09-4674-87b0-ed3029417b95", + "ownerItemId" : "urn:uuid:d578e63b-2d52-48b3-a94a-08130b6bd0de", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "childassetId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8205,17 +8121,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d8f61b46-569f-4d31-9641-e545b5622dac", + "ownerItemId" : "urn:uuid:dbd7b439-f1ae-43b3-a8bc-e188fbd96614", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "childassetId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8224,17 +8140,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9dcd0291-a393-4234-b5e3-d4a9c275ac0b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f96fc238-c88c-446a-afc2-1421efe22093", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "childassetId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8243,17 +8159,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8a77c60e-723e-4d59-84ea-09144b28ff30", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:1cd0f980-b421-4013-9333-4ad987ac37f9", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "childassetId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8262,17 +8178,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:041a9a8b-b424-4f5d-8374-3f730d6313cf", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ac714b43-5653-4525-9764-e1685128c944", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "childassetId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8281,17 +8197,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0c2bd490-f173-4531-ab58-4f7a9a9888f3", + "ownerItemId" : "urn:uuid:15917e20-3a12-4eb3-82cb-28f02c0462b9", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "childassetId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -8300,38 +8216,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ec6040d9-2a3c-46af-90d4-9644cc83bc9b", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:2e1c5ec5-d5e2-4332-9587-da58a2835fb3", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "childassetId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -8557,7 +8455,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-919179362377079580444521", + "batteryIDDMCCode" : "NO-201987510441217567632862", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -8599,13 +8497,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-03-14", - "version" : 1.4, - "status" : "Approved" + "issueDate" : "2022-04-19", + "version" : 1.7, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6247, + "diameter" : 229.648, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -8613,22 +8511,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2022-01-16", + "placedOnMarket" : "2021-04-20", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-919179362377079580444521", + "value" : "NO-201987510441217567632862", "key" : "PartInstanceID" } ], - "gtin" : " 45252906", + "gtin" : " 27769730", "additionalCode" : [ { "name" : "TARIC", - "value" : "696133927" + "value" : "816229662" } ] }, "sources" : { @@ -8650,7 +8548,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -8679,7 +8577,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-03-29", + "date" : "2023-08-16", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -8695,9 +8593,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.2175 ] + "left" : [ 4.5095 ] }, - "id" : "TH5675" + "id" : "CS4138" } ] }, "additionalData" : [ { @@ -8723,9 +8621,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Graphite" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Manganese" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -8735,14 +8633,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 119 }, "state" : "first life" }, "operation" : { "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AVTH" } } @@ -8755,26 +8653,42 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -9327,36 +9241,146 @@ "weight" : "0.11", "materialAbbreviation" : "SEL3321" } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] } ], - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "439214", + "orderNumber" : "964784", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "7990", + "referencedStandard" : "AS", + "referencedStandardID" : "7166", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -9365,10 +9389,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -9378,17 +9402,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -9396,7 +9420,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "assetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -9413,9 +9437,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "partTypeInformation" : { - "manufacturerPartId" : "ZP-94", + "manufacturerPartId" : "CK-88", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -9423,17 +9447,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -9443,31 +9467,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", + "parentItems" : [ { + "catenaXId" : "urn:uuid:29b47e6b-5f2b-401c-b868-efb2fe1779f9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:50a7db2d-2370-45db-99a0-1041c9f616fa", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -9482,11 +9504,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-23", + "currentStateOfHealthTimestamp" : "2014-11-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -9496,35 +9518,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "825197", + "orderNumber" : "433199", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6699", + "referencedStandard" : "AISI", + "referencedStandardID" : "5931", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -9533,9 +9555,9 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { @@ -9546,17 +9568,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -9571,7 +9593,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-870119299818458530530204", + "value" : "NO-671324987876344500699840", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -9582,7 +9604,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -9594,10 +9616,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", + "assetId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -9606,17 +9628,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ff6d56f4-ba0a-41a7-9eac-644afb77c476", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:23f94f77-6c6a-46cb-8d53-fe138edc73dc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -9629,24 +9651,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -9872,7 +9876,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-870119299818458530530204", + "batteryIDDMCCode" : "NO-671324987876344500699840", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -9891,22 +9895,38 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91ed65e2-1517-4216-aecb-000a30f50dea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cb70b9d1-d0a0-49b2-bc61-eda5b6a4ee80", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -9914,7 +9934,7 @@ "materialClass" : "8.1", "component" : [ { "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 64, + "recycledContent" : 32, "materialClass" : "8.1", "quantity" : { "unit" : "unit:percent", @@ -9924,25 +9944,25 @@ "materialAbbreviation" : "NCM" } ] } ], - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "284332", + "orderNumber" : "739105", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -9951,8 +9971,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "4702", + "referencedStandard" : "JIS", + "referencedStandardID" : "7745", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -9961,30 +9981,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -9992,7 +10012,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "assetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -10009,9 +10029,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "partTypeInformation" : { - "manufacturerPartId" : "PB-87", + "manufacturerPartId" : "VI-92", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -10019,17 +10039,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -10039,31 +10059,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d3193d00-a5fd-4fa4-a1ea-c3bbae4ec5c5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b857d83b-24ba-4011-8670-afa57caee306", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -10078,11 +10096,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-04", + "currentStateOfHealthTimestamp" : "2021-03-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -10092,35 +10110,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "152028", + "orderNumber" : "862903", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3992", + "referencedStandard" : "AS", + "referencedStandardID" : "8938", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -10131,28 +10149,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -10167,7 +10185,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-935980723922638521184633", + "value" : "NO-433039983976537226769763", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -10178,7 +10196,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -10190,10 +10208,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", + "assetId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -10202,17 +10220,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:090a652a-eb82-4bd2-b922-9552d0dc119a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9b17bbe6-27c1-4d99-a1a5-bfb7d88c4bf1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -10225,24 +10243,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -10468,7 +10468,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-935980723922638521184633", + "batteryIDDMCCode" : "NO-433039983976537226769763", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -10487,31 +10487,193 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b2a7db8-e53c-44fc-acbd-2a4f4257433e", - "customers" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f93c2d7f-ea73-410c-a0bf-7c45a0922fb0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AYRE" ] + } ] + }, { + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 48, + "materialClass" : "8.1", + "quantity" : { + "unit" : "unit:percent", + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ] + } ], + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "636858", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9082", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "manufacturerId" : "BPNL00000003B0Q0", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "batchId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "HUR", + "sites" : [ { + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation" : { + "manufacturerPartId" : "VK-21", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " } ], + "nameAtManufacturer" : "Mirror left" + }, + "itemVersion" : "05" + } ], + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "partTypeInformation" : { + "ownerPartId" : "", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "", + "partClassification" : [ { + "value" : "", + "key" : "BPNL00000003B0Q0:PartFamily" + } ], + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bef2fb8c-c220-436a-bda5-6f75f90d3039", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -10526,11 +10688,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-12-23", + "currentStateOfHealthTimestamp" : "2023-05-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -10540,35 +10702,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "139981", + "orderNumber" : "514925", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2416", + "referencedStandard" : "DIN", + "referencedStandardID" : "5519", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -10579,12 +10741,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -10600,7 +10762,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -10615,7 +10777,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-238580062345830034707563", + "value" : "NO-479198688158408022762058", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -10626,7 +10788,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -10638,10 +10800,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", + "assetId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -10650,17 +10812,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9b2a9d07-362d-4280-b197-7560f8b83466", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d2b4e541-a38f-4eb2-8803-81048ddf4094", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -10673,24 +10835,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -10916,7 +11060,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-238580062345830034707563", + "batteryIDDMCCode" : "NO-479198688158408022762058", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -10935,31 +11079,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ece1956d-638e-4d89-b14d-bc2fc2cfbbc1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b9af12a4-2e90-4042-9476-04da79971726", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -10974,11 +11134,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-20", + "currentStateOfHealthTimestamp" : "2020-08-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -10988,14 +11148,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "595129", + "orderNumber" : "278990", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { @@ -11004,19 +11164,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5497", + "referencedStandard" : "JASO", + "referencedStandardID" : "2803", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -11028,11 +11188,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -11042,13 +11202,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -11063,7 +11223,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-455702864631548437744445", + "value" : "NO-132833531716096180711426", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -11074,7 +11234,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -11089,7 +11249,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", + "assetId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -11098,17 +11258,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:85e9413f-feb0-49ac-96eb-500434d4cd67", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5ef1270f-e022-466f-81a5-a675db3c098e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -11121,24 +11281,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -11364,7 +11506,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-455702864631548437744445", + "batteryIDDMCCode" : "NO-132833531716096180711426", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -11383,31 +11525,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:35dd785e-9240-4d56-b972-e5930e44a14c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8163317a-7994-491e-84d3-08cf2c9dc27f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -11422,11 +11580,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-10-19", + "currentStateOfHealthTimestamp" : "2022-08-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -11436,35 +11594,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "585154", + "orderNumber" : "970553", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "5298", + "referencedStandard" : "IS", + "referencedStandardID" : "9662", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -11473,30 +11631,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -11511,7 +11669,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-979377149851032251466611", + "value" : "NO-292241856305076855775588", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -11522,7 +11680,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -11537,7 +11695,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", + "assetId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -11546,17 +11704,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7c569605-cb6f-4c8a-8eea-023f57a54b2f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:57ba17c9-e188-4d93-ae5d-f0905b6d7d87", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -11569,24 +11727,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -11812,7 +11952,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-979377149851032251466611", + "batteryIDDMCCode" : "NO-292241856305076855775588", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -11831,31 +11971,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:79b55974-cb8b-4015-ae99-dab59470bbc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f396d33b-09bf-445d-9573-644ffa405693", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -11870,11 +12026,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-10", + "currentStateOfHealthTimestamp" : "2019-09-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -11884,23 +12040,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "659956", + "orderNumber" : "966102", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -11911,8 +12067,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7569", + "referencedStandard" : "GB", + "referencedStandardID" : "5313", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -11923,28 +12079,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -11959,7 +12115,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-953337162480525054890231", + "value" : "NO-199218937729794417191306", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -11970,7 +12126,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -11982,10 +12138,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", + "assetId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -11994,17 +12150,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6319ef3a-a750-460e-9dfb-11548c767ce3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:edacd548-1ba2-4d65-bcee-57dd1c45efca", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -12017,24 +12173,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -12260,7 +12398,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-953337162480525054890231", + "batteryIDDMCCode" : "NO-199218937729794417191306", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -12279,31 +12417,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c86f9dc3-f632-47ea-91a1-d58def5711c0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bada56cf-1256-4df7-8e86-4ef14e76860c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -12318,11 +12472,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-17", + "currentStateOfHealthTimestamp" : "2021-07-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -12332,25 +12486,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "350434", + "orderNumber" : "22582", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -12359,8 +12513,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "5076", + "referencedStandard" : "ASME", + "referencedStandardID" : "9404", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -12371,7 +12525,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { @@ -12382,7 +12536,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -12407,7 +12561,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-283025147867584842633737", + "value" : "NO-797503102340948265815692", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -12418,7 +12572,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -12430,10 +12584,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", + "assetId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -12442,17 +12596,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:227fc68c-8fcb-470e-b4b2-7d2a4306119a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:86d2484e-6174-4143-93d1-665b80f0be14", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -12465,24 +12619,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -12708,7 +12844,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-283025147867584842633737", + "batteryIDDMCCode" : "NO-797503102340948265815692", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -12727,179 +12863,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8a61e80-07cb-42df-9721-cae45af3d47b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "materialName" : "Cathode Material", - "materialClass" : "8.1", - "component" : [ { - "materialName" : "Cobalt lithium manganese nickel oxide", - "recycledContent" : 5, - "materialClass" : "8.1", - "quantity" : { - "unit" : "unit:percent", - "value" : 100 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "NCM" - } ] - } ], - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "bpnl" : "BPNL00000003B0Q0", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "367891", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 - }, - "bioBasedClass" : "gen1", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Bluecert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "9726", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "manufacturerId" : "BPNL00000003B0Q0", - "childItems" : [ ] - } ], - "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR", - "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "partTypeInformation" : { - "manufacturerPartId" : "NF-25", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "Mirror left" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", "partTypeInformation" : { - "ownerPartId" : "", - "partVersion" : "01", + "ownerPartId" : "8840374-09", + "partVersion" : "02", "itemCategory" : "component", - "partDescription" : "", + "partDescription" : "ZB ZELLE", "partClassification" : [ { - "value" : "", - "key" : "BPNL00000003B0Q0:PartFamily" + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], - "nameAtOwner" : "" + "nameAtOwner" : "ZB ZELLE" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "customers" : [ { - "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:01a26bc3-e056-462d-a140-18143ef35552", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e965160a-73aa-4d89-b230-18fad11c9d83", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -12914,11 +12918,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-31", + "currentStateOfHealthTimestamp" : "2019-11-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -12928,35 +12932,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "859856", + "orderNumber" : "308012", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5694", + "referencedStandard" : "ASME", + "referencedStandardID" : "4503", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -12965,30 +12969,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -13003,7 +13007,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-409479289986597261873689", + "value" : "NO-675038433261641027148171", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -13014,7 +13018,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -13026,10 +13030,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", + "assetId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -13038,17 +13042,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e33f4ea9-6b55-43ce-95c1-2114aa644a79", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:05cc4fc7-83b5-40b3-acde-15628ccd27ab", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -13061,24 +13065,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -13304,7 +13290,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-409479289986597261873689", + "batteryIDDMCCode" : "NO-675038433261641027148171", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -13323,31 +13309,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:27f43be3-7f3f-43a1-9a27-29676955dc78", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:32fa4437-ac30-45fd-863e-2a0a218dc78e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -13362,11 +13364,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-13", + "currentStateOfHealthTimestamp" : "2019-08-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -13376,35 +13378,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "545341", + "orderNumber" : "678439", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4845", + "referencedStandard" : "JASO", + "referencedStandardID" : "9065", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -13415,28 +13417,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -13451,7 +13453,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-927504595898056099855081", + "value" : "NO-490203710993131773561088", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -13462,7 +13464,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -13477,7 +13479,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", + "assetId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -13486,17 +13488,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:23dcadc5-48a6-44c2-ab39-a0f7df4c3673", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:136df96d-e72c-4700-9b93-4f04680d7237", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -13509,24 +13511,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -13752,7 +13736,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-927504595898056099855081", + "batteryIDDMCCode" : "NO-490203710993131773561088", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -13771,31 +13755,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:456eeb54-1c46-4ef4-9cf6-41431a1c7b6f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:63d12fa9-4fbd-4739-9064-5eaef0f1cd17", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -13810,11 +13810,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-11-12", + "currentStateOfHealthTimestamp" : "2023-04-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -13824,35 +13824,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "953322", + "orderNumber" : "451523", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7532", + "referencedStandard" : "DIN", + "referencedStandardID" : "4114", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -13863,7 +13863,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { @@ -13878,13 +13878,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -13899,7 +13899,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-235015725608216527525071", + "value" : "NO-946429514730639817233206", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -13910,7 +13910,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -13922,10 +13922,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", + "assetId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -13934,17 +13934,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2992debd-b624-4e10-a8b0-14d75bacb06e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b43f7e1b-17cb-4eef-ae5d-0f68680592b4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -13957,24 +13957,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -14200,7 +14182,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-235015725608216527525071", + "batteryIDDMCCode" : "NO-946429514730639817233206", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -14219,28 +14201,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0aa1e7a-d485-42c0-8063-412d45c7cc99", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e949f8b2-a27e-4580-9a2e-1be07d58103f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf9c22c9-758c-4119-8d91-0f760850f08c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f705e6b-6f66-4d13-8773-41a175394924", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 85, + "recycledContent" : 18, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -14250,7 +14248,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 22, + "recycledContent" : 13, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -14260,7 +14258,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 42, + "recycledContent" : 72, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -14271,112 +14269,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -14384,10 +14382,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "257733", + "orderNumber" : "578439", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -14396,23 +14394,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8201", + "referencedStandard" : "ASME", + "referencedStandardID" : "4036", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -14424,11 +14422,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -14438,13 +14436,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -14459,7 +14457,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-838322959839811561036246", + "value" : "NO-296848907669508648073521", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -14470,7 +14468,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -14482,10 +14480,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", + "assetId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -14494,17 +14492,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:237a08cc-a748-4328-a1a3-26fce5b741ec", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:11900cf4-6f35-4296-a7cc-317fdcfcec7e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14513,17 +14511,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1a880c81-c570-4f23-86bd-dd1663ba5005", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4f1b4967-c756-472c-9164-dea7a2dece4c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "childassetId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14532,17 +14530,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8178eeef-1938-42bd-bae0-b36c1ef2955b", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:5c189ac2-1df5-46fd-bf9d-054b28e71b21", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "childassetId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14551,17 +14549,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0a095fba-2240-4a3e-99e8-2a131d955aa8", + "ownerItemId" : "urn:uuid:6df10f4a-1ee1-4a01-8078-af6b076ae8a9", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "childassetId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14570,17 +14568,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e74b82c3-238d-4183-a09d-9aefe69ff2a1", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:648ede6c-eabf-4e84-82b6-19090a2c3c8c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "childassetId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14589,17 +14587,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c4071f3c-ace8-422a-bb4d-24f525ec4205", + "ownerItemId" : "urn:uuid:3092eaf6-e1ac-47cc-9a00-e37675249c9b", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "childassetId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14608,17 +14606,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4637ad73-e6cb-4d46-9969-bb072fa94ce4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:32e7d5e1-b4f6-46ab-ab26-440b2db24ed2", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "childassetId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14627,17 +14625,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0b3b77b9-bebb-4b19-9c57-ec03c29e084b", + "ownerItemId" : "urn:uuid:83391cc7-6df3-41c3-ae7a-50d1470beacd", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "childassetId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14646,17 +14644,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c113691e-5a5b-4dd4-92f9-4770d88aa2ae", + "ownerItemId" : "urn:uuid:7fd827aa-76c9-4472-b913-85cbc0a3426d", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "childassetId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14665,17 +14663,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dc4d46c1-3254-4655-85df-ade73fdd2276", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ebf2e6c9-532b-4e9f-a20b-a6805f84b7a6", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "childassetId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -14684,38 +14682,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4487104c-2670-48c8-821f-95bb06d457e4", + "ownerItemId" : "urn:uuid:e260189c-f15a-4cdb-8675-9d786ccfe276", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "childassetId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -14941,7 +14921,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-838322959839811561036246", + "batteryIDDMCCode" : "NO-296848907669508648073521", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -14983,13 +14963,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-10-11", - "version" : 1.7, - "status" : "Approved" + "issueDate" : "2024-03-27", + "version" : 1.3, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6942, + "diameter" : 229.6654, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -14997,22 +14977,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2021-12-17", + "placedOnMarket" : "2023-04-26", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-838322959839811561036246", + "value" : "NO-296848907669508648073521", "key" : "PartInstanceID" } ], - "gtin" : " 97227772", + "gtin" : " 64708173", "additionalCode" : [ { "name" : "TARIC", - "value" : "636715904" + "value" : "679731400" } ] }, "sources" : { @@ -15034,7 +15014,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "Passport", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -15063,12 +15043,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-04-26", + "date" : "2024-03-30", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -15079,9 +15059,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 6.5069 ] + "left" : [ 1.2501 ] }, - "id" : "YQ8580" + "id" : "VX5486" } ] }, "additionalData" : [ { @@ -15107,9 +15087,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "UV Varnish" + "name" : "Nickel" } ], - "critical" : [ "Cobalt" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -15119,14 +15099,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 123 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AVTH" } } @@ -15139,88 +15119,734 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:kilogram", + "value" : 2.5 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + }, { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 2.5 + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-17", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" - } ], - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "904375", + "orderNumber" : "424794", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "2364", + "referencedStandard" : "IS", + "referencedStandardID" : "1018", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -15229,118 +15855,266 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } } } ] } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "manufacturerId" : "BPNL00000003AXS3", + "childItems" : [ ] + } ], + "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-663073156093039453892485", - "key" : "partInstanceId" + "value" : "BPNL00000003AXS3", + "key" : "batchId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", - "country" : "DEU", + "country" : "HUR", "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", + "catenaXsiteId" : "BPNS00000003AXS3", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", + "manufacturerPartId" : "FQ-22", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "nameAtManufacturer" : "Mirror left" }, "itemVersion" : "05" } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:30d3e983-f90e-4392-9d12-d30ba1b6c9ed", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "partTypeInformation" : { - "ownerPartId" : "8840374-09", + "ownerPartId" : "", "partVersion" : "05", "itemCategory" : "component", - "partDescription" : "ZB ZELLE", + "partDescription" : "", "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "value" : "", + "key" : "BPNL00000003AXS3:PartFamily" } ], - "nameAtOwner" : "ZB ZELLE" + "nameAtOwner" : "" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ac1d3a10-e889-4c60-aae5-12c1f84574ae", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AXS3" ] + } ] + }, { + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "childItems" : [ { + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003B0Q0", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : 90, + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-02-03", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : 105 + }, { + "currentStateOfHealthTimestamp" : "2024-03-29", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : 95 + } ], + "performanceIndicator" : { + "electrictiyCapacityMax" : 3117.732935335289, + "electrictiyCapacityMin" : 26212.182226034147 + }, + "type" : "HVB" + } ], + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { + "orderNumber" : "780497", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AS", + "referencedStandardID" : "3831", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ], + "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-016339537790317629674230", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU", + "sites" : [ { + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production" + } ] + }, + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "partClassification" : [ { + "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", + "classificationStandard" : "IEC", + "classificationID" : "61360- 2:2012 " + } ], + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + }, + "itemVersion" : "01" + } ], + "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { + "assetId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "manufacturerId" : "BPNL00000003AYRE", + "childItems" : [ { + "item" : [ { + "itemClassification" : [ { + "value" : "Mirror left", + "key" : "BPNL00000003AYRE:PartFamily" + } ], + "itemQuantity" : { + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" + }, + "ownerItemId" : "urn:uuid:23300b37-04fd-46ce-88f3-0c5622f1482d", + "itemVersion" : "02", + "itemDescription" : "The steering wheel is nice and round", + "createdOn" : "2022-02-03T14:48:54.709Z", + "itemPositioning" : "left", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", + "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + } ] + } ], + "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { + "physicalDimensionsProperty" : { + "diameter" : 380, + "width" : 590, + "length" : 810, + "weight" : 85, + "height" : 610 } } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { @@ -15568,7 +16342,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-663073156093039453892485", + "batteryIDDMCCode" : "NO-016339537790317629674230", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -15587,31 +16361,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aa452232-0e8b-4555-8404-069aef7868fc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5c85c28-5132-45dc-b9df-12b15bca2f02", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -15626,11 +16416,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-07", + "currentStateOfHealthTimestamp" : "2017-08-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -15640,35 +16430,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "421491", + "orderNumber" : "617335", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "1098", + "referencedStandard" : "ISO", + "referencedStandardID" : "5572", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -15677,30 +16467,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -15715,7 +16505,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-816234871234575434175023", + "value" : "NO-617981988528419498927484", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -15726,7 +16516,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -15738,10 +16528,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", + "assetId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -15750,17 +16540,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:adee468e-b4ac-449d-bd1d-af91c0ef97b8", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:ff6b698a-c95c-48af-b98f-eb37de88e386", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -15773,24 +16563,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -16016,7 +16788,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-816234871234575434175023", + "batteryIDDMCCode" : "NO-617981988528419498927484", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -16035,31 +16807,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3403967-1cad-45d5-acf5-6a4ba61041b2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5bb47c9b-8d30-46f9-9c30-2931dbcdd853", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -16074,11 +16862,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-26", + "currentStateOfHealthTimestamp" : "2020-05-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -16088,14 +16876,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "779982", + "orderNumber" : "199017", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { @@ -16104,7 +16892,7 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -16115,8 +16903,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6142", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4070", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -16125,30 +16913,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -16163,7 +16951,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-738268322111071992512022", + "value" : "NO-320853368171916289548897", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -16174,7 +16962,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -16189,7 +16977,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", + "assetId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -16198,17 +16986,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b54255d5-26c1-439f-9fed-cc1234d85a7c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0ac61e73-f600-495a-b962-96b24d8bfc5e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -16221,24 +17009,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -16464,7 +17234,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-738268322111071992512022", + "batteryIDDMCCode" : "NO-320853368171916289548897", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -16483,31 +17253,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1723ce-9970-4c6b-b704-c987702f324b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4baf4aed-459d-4920-ac99-56bed0fb08ef", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -16522,11 +17308,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-12", + "currentStateOfHealthTimestamp" : "2021-01-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -16536,35 +17322,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "873620", + "orderNumber" : "576227", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "6215", + "referencedStandard" : "EN", + "referencedStandardID" : "7473", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -16575,18 +17361,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -16596,7 +17382,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -16611,7 +17397,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-321442052139648020241062", + "value" : "NO-992341679513676507660096", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -16622,7 +17408,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -16634,10 +17420,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", + "assetId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -16646,17 +17432,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6f120025-b053-4ce1-baad-62df174f0b12", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3172f576-8253-435a-87ad-a48cdd29723c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -16669,24 +17455,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -16912,7 +17680,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-321442052139648020241062", + "batteryIDDMCCode" : "NO-992341679513676507660096", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -16931,31 +17699,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:abca541e-0163-4801-8383-1724dc6e7ddc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ad4b6fce-52a1-4276-a2fc-01c653b9629a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -16970,11 +17754,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-04", + "currentStateOfHealthTimestamp" : "2021-01-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -16984,35 +17768,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "175377", + "orderNumber" : "984724", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9620", + "referencedStandard" : "AISI", + "referencedStandardID" : "5298", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -17023,28 +17807,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -17059,7 +17843,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-114516443320856885894272", + "value" : "NO-073655130038141205508570", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -17070,7 +17854,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -17085,7 +17869,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", + "assetId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -17094,17 +17878,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f7fb4221-398c-4445-8392-1f52a7bf6263", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bb06b413-855e-413f-9e1b-54dd39cac74c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -17117,24 +17901,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -17360,7 +18126,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-114516443320856885894272", + "batteryIDDMCCode" : "NO-073655130038141205508570", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -17379,31 +18145,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:847ef93a-ed75-4216-bf05-4893eeb315b5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7ba844f7-10dd-47d5-a132-239415b29e84", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -17418,11 +18200,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-09", + "currentStateOfHealthTimestamp" : "2019-04-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -17432,25 +18214,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "968582", + "orderNumber" : "752771", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -17459,8 +18241,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "2601", + "referencedStandard" : "DIN", + "referencedStandardID" : "9966", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -17469,24 +18251,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -17507,7 +18289,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-202860084166978430348394", + "value" : "NO-261194026953093506440422", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -17518,7 +18300,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -17530,10 +18312,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", + "assetId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -17542,17 +18324,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:11a35756-0df2-4e6f-8360-a615062cd546", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:51b4982d-27f8-4eb7-b7eb-0e536da78e6b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -17565,24 +18347,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -17808,7 +18572,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-202860084166978430348394", + "batteryIDDMCCode" : "NO-261194026953093506440422", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -17827,31 +18591,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2d004402-cfee-4019-8170-90d32db2b7bb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73e5e6c2-776e-4b01-b414-0b5365090593", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -17866,11 +18646,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-30", + "currentStateOfHealthTimestamp" : "2023-03-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -17880,10 +18660,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "745299", + "orderNumber" : "245263", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -17892,23 +18672,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "3571", + "referencedStandardID" : "1279", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -17917,14 +18697,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -17934,13 +18714,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -17955,7 +18735,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-494374901619716039791371", + "value" : "NO-535611923072661018387594", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -17966,7 +18746,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -17981,7 +18761,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", + "assetId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -17990,17 +18770,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:34462397-5903-4a4a-9c39-257ac4d690e6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c4169336-58cb-4b88-8c4a-742dd218d240", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -18013,24 +18793,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -18256,7 +19018,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-494374901619716039791371", + "batteryIDDMCCode" : "NO-535611923072661018387594", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -18275,31 +19037,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c08e63a-23f0-4240-8c6d-d7df7f89d801", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba6432e2-0178-4ec4-a9f8-ce64d8599ecf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -18314,11 +19092,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-04", + "currentStateOfHealthTimestamp" : "2021-10-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -18328,19 +19106,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "429296", + "orderNumber" : "145129", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -18355,8 +19133,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1645", + "referencedStandard" : "ISO", + "referencedStandardID" : "8379", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -18367,28 +19145,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -18403,7 +19181,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-794467681195929992255435", + "value" : "NO-484647398722946442239604", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -18414,7 +19192,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -18429,7 +19207,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", + "assetId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -18438,17 +19216,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8e862982-2150-453e-8229-654d52d3cd65", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b5b4d66b-5bb0-43b3-a71d-3ed357f35997", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -18461,24 +19239,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -18704,7 +19464,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-794467681195929992255435", + "batteryIDDMCCode" : "NO-484647398722946442239604", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -18723,31 +19483,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73cbae1a-85b3-4c70-9fb3-3d2fe12e2165", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f363788a-032b-45fe-956d-054e984df5dd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -18762,11 +19538,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-11", + "currentStateOfHealthTimestamp" : "2021-12-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -18776,25 +19552,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "144745", + "orderNumber" : "320740", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -18804,7 +19580,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "7152", + "referencedStandardID" : "4457", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -18816,17 +19592,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -18836,7 +19612,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -18851,7 +19627,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-034590603053687442399458", + "value" : "NO-813080145802249908284610", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -18862,7 +19638,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -18874,10 +19650,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", + "assetId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -18886,17 +19662,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4283681d-1881-4219-ba87-e2bc0caa933b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9750034c-1fb4-4d0e-b62c-5f5379b42692", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -18909,24 +19685,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -19152,7 +19910,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-034590603053687442399458", + "batteryIDDMCCode" : "NO-813080145802249908284610", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -19171,31 +19929,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12cfacb1-7105-43c0-bf52-04a6697648e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fd263f4-adf3-46a5-b024-90609d83a609", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -19210,11 +19984,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-03-08", + "currentStateOfHealthTimestamp" : "2016-06-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -19224,25 +19998,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "876397", + "orderNumber" : "301653", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -19251,8 +20025,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9888", + "referencedStandard" : "AS", + "referencedStandardID" : "9654", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -19263,28 +20037,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -19299,7 +20073,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-616535750451374596363638", + "value" : "NO-959547848200732624330573", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -19310,7 +20084,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -19325,7 +20099,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", + "assetId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -19334,17 +20108,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dd9de3f8-aa2d-4cf6-b047-fd58b7327057", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e52b885d-4b07-4601-b06f-3cac1bd2b9a1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -19357,24 +20131,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -19600,7 +20356,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-616535750451374596363638", + "batteryIDDMCCode" : "NO-959547848200732624330573", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -19619,28 +20375,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d38e847-3872-4012-b851-1821689b56e4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:31c93161-4de0-40e8-8a55-0ce4c0d9e5e9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:812935f4-88f3-447d-9cf1-e8bbf09af03d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:85958b49-6391-462b-960b-95ade53c48db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 47, + "recycledContent" : 18, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -19650,7 +20422,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 47, + "recycledContent" : 18, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -19660,7 +20432,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 22, + "recycledContent" : 34, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -19671,112 +20443,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -19784,35 +20556,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "45913", + "orderNumber" : "543484", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1869", + "referencedStandard" : "ASME", + "referencedStandardID" : "8090", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -19828,23 +20600,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -19859,7 +20631,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-757418965725956072308711", + "value" : "NO-444049960239880933393726", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -19870,7 +20642,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -19885,7 +20657,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", + "assetId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -19894,17 +20666,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:80223f49-7d96-423f-b359-43ca533684f3", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:b098587e-4dcb-4f0a-b09e-847e41451684", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -19913,17 +20685,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d0b73988-05f1-4457-98da-cd5afc4bcdaa", + "ownerItemId" : "urn:uuid:33e5ddba-bbb7-45c8-9c61-0bc54da15d3a", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "childassetId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -19932,17 +20704,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dfeddda1-3f79-46dc-97d1-165cf02ed355", + "ownerItemId" : "urn:uuid:4dde962c-7816-435d-81d9-ea473a07a7b7", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "childassetId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -19951,17 +20723,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7ac77862-aeea-4613-9a60-a44ee96a2de6", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:3d68807c-7d77-4f88-91f9-fd428b229416", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "childassetId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -19970,17 +20742,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d767f979-c2ff-4609-bc6c-0504129a99cc", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:0b3ea14f-d88a-4191-978f-bf806f70e852", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "childassetId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -19989,17 +20761,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:84c058c5-83fb-4b6d-b971-ae9c9efc9995", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:ade35156-34f2-4b07-8109-93126201fe68", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "childassetId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20008,17 +20780,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d3f548b3-47cd-42e1-9972-b64deb3f5ae2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:eeb981f4-d293-4739-8ef5-f1ce8d21270a", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "childassetId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20027,17 +20799,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7011d5bc-bbfb-4d22-981a-2f90607db71c", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:212c6232-1724-4d86-8e0c-549c8f2dde23", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "childassetId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20046,17 +20818,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4a3840e-e9cf-42f8-8d08-49010ad2e780", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:257d4edd-b970-4c07-acfb-2f9827d28f71", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "childassetId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20065,17 +20837,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a000e83f-e975-4979-919c-bd75199d653e", + "ownerItemId" : "urn:uuid:bac9d2f9-df65-4a56-b09d-73103edc7a55", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "childassetId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -20084,38 +20856,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c31a4a71-f96a-4e58-9ad6-462dc39a9be0", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:c4c1d1fe-f709-476d-88d5-be9748915e15", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "childassetId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -20341,7 +21095,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-757418965725956072308711", + "batteryIDDMCCode" : "NO-444049960239880933393726", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -20383,13 +21137,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-07-01", - "version" : 1.6, - "status" : "Invalid" + "issueDate" : "2022-07-29", + "version" : 2.1, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6343, + "diameter" : 229.6556, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -20401,18 +21155,18 @@ } }, "commercial" : { - "placedOnMarket" : "2021-07-24", + "placedOnMarket" : "2020-12-26", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-757418965725956072308711", + "value" : "NO-444049960239880933393726", "key" : "PartInstanceID" } ], - "gtin" : " 14004109", + "gtin" : " 20693494", "additionalCode" : [ { "name" : "TARIC", - "value" : "263852104" + "value" : "675346905" } ] }, "sources" : { @@ -20434,7 +21188,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Passport", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -20463,7 +21217,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-04", + "date" : "2023-02-24", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -20479,9 +21233,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 6.181 ] + "left" : [ 0.549 ] }, - "id" : "GB2917" + "id" : "NH4168" } ] }, "additionalData" : [ { @@ -20507,7 +21261,7 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Cobalt" + "name" : "Nickel" } ], "critical" : [ "Graphite" ], "carbonFootprint" : { @@ -20519,12 +21273,12 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 109 + "carbonContentTotal" : 118 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003B2OM", "manufacturerId" : "BPNL00000003AVTH" @@ -20539,939 +21293,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "childItems" : [ ] - } ], - "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - }, { - "component" : [ { - "materialName" : "Sealant", - "materialClass" : "6.3", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "weight" : "0.11", - "materialAbbreviation" : "SEL3321" - } ] - } ], - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "bpnl" : "BPNL00000003AXS3", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "478965", - "secondaryMaterialContent" : [ { - "bioBased" : { - "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 - }, - "bioBasedClass" : "gen3", - "secondaryBioBased" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 - } - }, - "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", - "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", - "grossMaterialInputMass" : 3500, - "materialNetMass" : 3000 - }, - "certificate" : [ { - "certificateName" : "Yellowcert", - "certificateLink" : "telnet://192.0.2.16:80/" - } ], - "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "9356", - "materialNameStandardizedValue" : "PP-TD10" - }, - "inorganic" : { - "primaryInorganic" : { - "percentageOfMaterialWeight" : 12 - }, - "secondaryInorganic" : { - "postConsumer" : { - "isPreviousIndustryAutomotive" : true, - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 - } - }, - "postConsumerAutomotive" : { - "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - }, - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 - } - }, - "preConsumer" : { - "mechanicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 - } - } - } - } - } ] - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "manufacturerId" : "BPNL00000003AXS3", - "childItems" : [ ] - } ], - "urn:samm:io.catenax.batch:3.0.0#Batch" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "batchId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "HUR", - "sites" : [ { - "catenaXsiteId" : "BPNS00000003AXS3", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "partTypeInformation" : { - "manufacturerPartId" : "LV-64", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "Mirror left" - }, - "itemVersion" : "03" - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", "partTypeInformation" : { - "ownerPartId" : "", - "partVersion" : "03", + "ownerPartId" : "8840838-04", + "partVersion" : "01", "itemCategory" : "component", - "partDescription" : "", + "partDescription" : "HV MODUL", "partClassification" : [ { - "value" : "", - "key" : "BPNL00000003AXS3:PartFamily" + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], - "nameAtOwner" : "" + "nameAtOwner" : "HV MODUL" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "customers" : [ { - "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:77d765dc-1725-4fa0-850f-14ff4d221640", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -21486,11 +21348,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-10", + "currentStateOfHealthTimestamp" : "2022-09-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -21500,25 +21362,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "187290", + "orderNumber" : "913477", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -21527,8 +21389,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5718", + "referencedStandard" : "ASME", + "referencedStandardID" : "8777", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -21540,11 +21402,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -21554,13 +21416,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -21575,7 +21437,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-196750260355920905784672", + "value" : "NO-914378285285794559596331", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -21586,7 +21448,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -21601,7 +21463,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", + "assetId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -21610,17 +21472,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6975d17d-ad2e-4f27-a09a-7a8c146b67ef", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3a5f66b2-f430-4bec-b6a3-e8affe192ba2", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -21633,24 +21495,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -21876,7 +21720,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-196750260355920905784672", + "batteryIDDMCCode" : "NO-914378285285794559596331", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -21895,31 +21739,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc30e491-6e3e-418e-8795-7b54d831bb13", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6da0ff5b-0056-4015-9381-eb43fc5bb130", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -21934,11 +21794,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-06-24", + "currentStateOfHealthTimestamp" : "2017-03-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -21948,23 +21808,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "52305", + "orderNumber" : "167513", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -21975,8 +21835,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "7544", + "referencedStandard" : "AS", + "referencedStandardID" : "7350", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -21985,24 +21845,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -22023,7 +21883,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-851192230441246681631253", + "value" : "NO-208079010497383150143341", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -22034,7 +21894,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -22049,7 +21909,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", + "assetId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -22058,17 +21918,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:15dbcdd6-dd2d-45ad-aac1-734e616a03bf", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ece2d65b-6c3f-46cd-a98e-d9862eb0478c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -22081,24 +21941,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -22324,7 +22166,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-851192230441246681631253", + "batteryIDDMCCode" : "NO-208079010497383150143341", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -22343,31 +22185,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4d6866c3-cdc3-4f3d-a2c9-bf0d806252ee", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:061758e1-2df1-4236-871c-68b03ddfd92e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -22382,7 +22240,7 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-11", + "currentStateOfHealthTimestamp" : "2016-02-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { @@ -22396,25 +22254,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "564965", + "orderNumber" : "575743", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -22423,8 +22281,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "3263", + "referencedStandard" : "GB", + "referencedStandardID" : "3375", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -22433,24 +22291,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -22471,7 +22329,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-561731599817906783111770", + "value" : "NO-186835878158661663948625", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -22482,7 +22340,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -22494,10 +22352,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", + "assetId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -22506,17 +22364,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:129f667e-3c6f-401c-88cc-2ba08ba8e90f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c7cc2cb2-f310-4d5b-8ea7-d1993a983919", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -22529,24 +22387,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -22772,7 +22612,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-561731599817906783111770", + "batteryIDDMCCode" : "NO-186835878158661663948625", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -22791,31 +22631,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d8256352-6154-4e41-843f-8a6e2a58ee8c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7f728a6-631d-4fc3-a829-6bd45f67cd04", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -22830,11 +22686,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-04-15", + "currentStateOfHealthTimestamp" : "2018-01-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -22844,23 +22700,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "429757", + "orderNumber" : "942180", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -22871,8 +22727,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "8870", + "referencedStandard" : "DIN", + "referencedStandardID" : "3641", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -22884,27 +22740,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -22919,7 +22775,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-601684402916676295378875", + "value" : "NO-469066644573312236590150", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -22930,7 +22786,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -22942,10 +22798,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", + "assetId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -22954,17 +22810,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2b3628a7-4249-484d-bc58-666402b64cbe", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b2631602-ff50-4172-acd4-73edba87c4bc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -22977,24 +22833,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -23220,7 +23058,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-601684402916676295378875", + "batteryIDDMCCode" : "NO-469066644573312236590150", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -23239,31 +23077,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bfa0928-ad3a-4a58-8aba-e3cb758ebcbd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:523a4415-cb70-4dc6-a891-9b9eba082262", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -23278,11 +23132,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-13", + "currentStateOfHealthTimestamp" : "2021-08-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -23292,19 +23146,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "106891", + "orderNumber" : "867471", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -23319,8 +23173,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7770", + "referencedStandard" : "ASME", + "referencedStandardID" : "6158", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -23329,10 +23183,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -23342,17 +23196,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -23367,7 +23221,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-220579398527605828592786", + "value" : "NO-968294246751594821198186", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -23378,7 +23232,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -23390,10 +23244,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", + "assetId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -23402,17 +23256,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2c866b62-ebb6-441f-abb8-2e5a48f094a2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d1423f91-b0a7-407f-bc1c-bec69b6de9c3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -23425,24 +23279,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -23668,7 +23504,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-220579398527605828592786", + "batteryIDDMCCode" : "NO-968294246751594821198186", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -23687,31 +23523,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:01a353fb-212c-477e-8986-b5cfc48e3826", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d9c6b8e2-0b23-4f3d-8779-255250809255", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -23726,11 +23578,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-08-20", + "currentStateOfHealthTimestamp" : "2022-06-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -23740,35 +23592,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "970794", + "orderNumber" : "459727", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3631", + "referencedStandard" : "ASME", + "referencedStandardID" : "5320", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -23777,14 +23629,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -23800,7 +23652,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -23815,7 +23667,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-989896312164316486011352", + "value" : "NO-727859505217916052545732", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -23826,7 +23678,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -23838,10 +23690,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", + "assetId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -23850,17 +23702,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:20916d3d-c2e1-472b-83ba-7a22b30ff252", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:59d6d094-960a-44b6-b441-7ccb46480079", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -23873,24 +23725,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -24116,7 +23950,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-989896312164316486011352", + "batteryIDDMCCode" : "NO-727859505217916052545732", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -24135,31 +23969,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad2c549e-0bac-4351-8eec-f270d91b0eed", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:efd11666-d3cb-45ce-8328-ae903382ccc2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -24174,11 +24024,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-14", + "currentStateOfHealthTimestamp" : "2021-07-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -24188,35 +24038,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "603324", + "orderNumber" : "673193", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "4498", + "referencedStandardID" : "7857", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -24227,18 +24077,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -24263,7 +24113,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-668413753586612912737466", + "value" : "NO-634147692982310270951905", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -24274,7 +24124,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -24286,10 +24136,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", + "assetId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -24298,17 +24148,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:18550a52-d54c-49e1-b977-2f8a33051998", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b13e9347-a6f3-4e47-907e-db6e1e883ed3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -24321,24 +24171,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -24564,7 +24396,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-668413753586612912737466", + "batteryIDDMCCode" : "NO-634147692982310270951905", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -24583,31 +24415,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:86551238-c85e-47d9-b8db-19b57b89ddde", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:70dead91-c6a2-4cbc-b149-d6765b27ba01", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -24622,11 +24470,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-12", + "currentStateOfHealthTimestamp" : "2016-10-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -24636,35 +24484,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "533786", + "orderNumber" : "856245", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7404", + "referencedStandard" : "AISI", + "referencedStandardID" : "1743", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -24673,10 +24521,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -24686,17 +24534,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -24711,7 +24559,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-573889269137330790927065", + "value" : "NO-313782703750602425316051", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -24722,7 +24570,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -24734,10 +24582,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", + "assetId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -24746,17 +24594,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4fd6b8c-9210-49ad-9633-86dea8229898", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:934481a9-89d6-448e-beeb-6d4f9a67341e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -24769,24 +24617,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -25012,7 +24842,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-573889269137330790927065", + "batteryIDDMCCode" : "NO-313782703750602425316051", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -25031,31 +24861,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8bb14cad-97c3-47cc-aa83-765a3fff4aa5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2532244b-095d-4c98-be88-bd85af8ebe00", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -25070,11 +24916,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-03-27", + "currentStateOfHealthTimestamp" : "2021-03-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -25084,35 +24930,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "288513", + "orderNumber" : "934441", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9298", + "referencedStandard" : "DIN", + "referencedStandardID" : "7487", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -25121,30 +24967,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -25159,7 +25005,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-548985088263485891029251", + "value" : "NO-810796015857366550760177", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -25170,7 +25016,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -25185,7 +25031,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", + "assetId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -25194,17 +25040,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:88cd2bda-e15b-4b2f-ac30-7d1f734f22fc", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:94e8e6e1-dbac-493a-a431-b45bb289a8f4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -25217,24 +25063,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -25460,7 +25288,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-548985088263485891029251", + "batteryIDDMCCode" : "NO-810796015857366550760177", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -25479,31 +25307,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1716923-df22-4142-aae5-bf66cc5d25fc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5e98435-2432-4ee9-a454-b3d42a2c689d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -25518,11 +25362,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-23", + "currentStateOfHealthTimestamp" : "2018-10-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -25532,25 +25376,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "117589", + "orderNumber" : "786179", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -25559,8 +25403,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4089", + "referencedStandard" : "JASO", + "referencedStandardID" : "1499", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -25569,30 +25413,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -25607,7 +25451,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-905223916160251431905990", + "value" : "NO-282429356471879113475504", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -25618,7 +25462,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -25630,10 +25474,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", + "assetId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -25642,17 +25486,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5f1b604b-bfce-4875-9577-5ea764d1e380", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:53424c66-d131-4209-a901-3be0dafbeb8e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -25665,24 +25509,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -25908,7 +25734,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-905223916160251431905990", + "batteryIDDMCCode" : "NO-282429356471879113475504", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -25927,28 +25753,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7220e5e8-b364-4b9b-a68d-d66a9829636f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e242902b-0236-4245-b862-72c933f34f56", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:851edce8-7720-40e3-8a96-08e34882ed4e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:67093d02-5f9c-4d35-8a6c-a1d3f7f7c687", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 72, + "recycledContent" : 43, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -25958,7 +25800,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 47, + "recycledContent" : 56, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -25968,7 +25810,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 24, + "recycledContent" : 66, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -25979,112 +25821,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -26092,35 +25934,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "948584", + "orderNumber" : "990380", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4179", + "referencedStandard" : "JASO", + "referencedStandardID" : "5074", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -26129,30 +25971,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -26167,7 +26009,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-883610489267919397198041", + "value" : "NO-004408690175782905965278", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -26178,7 +26020,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -26190,10 +26032,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", + "assetId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -26202,17 +26044,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:964a163a-2bf0-4777-8155-79c675c4c576", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:35ae017a-4617-47ed-8672-619fddb9e9aa", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26221,17 +26063,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:804f7b43-0ad9-47ec-bab9-4c16a3097999", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3ee5caac-4893-48d9-954a-cb7006d01e11", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "childassetId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26240,17 +26082,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:16da91d1-50f8-491f-972b-b678de36973d", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:fa09d078-deb8-4542-851c-baaa1a97dfc8", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "childassetId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26259,17 +26101,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f24fd8bc-8e8c-4ded-af59-71001eda2efd", + "ownerItemId" : "urn:uuid:e0e2a832-0e90-451b-ab53-185691c8040e", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "childassetId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26278,17 +26120,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a144cf41-dace-416d-a063-312c148fbb00", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:43f8e02f-48a2-49e7-88e6-7d2bc315df06", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "childassetId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26297,17 +26139,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:78fac256-ef9b-4c39-9731-1d23972dbf7e", + "ownerItemId" : "urn:uuid:2b3c9bec-e091-44b6-b810-4e2501b0f520", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "childassetId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26316,17 +26158,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4b8c898d-96a2-4c77-83f3-15eaa25e9c56", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:580bfb76-278d-4bba-8e75-d78aeda6e43d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "childassetId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26335,17 +26177,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2f9907f8-8d78-4c98-b627-14d40b90f64a", + "ownerItemId" : "urn:uuid:88418c7e-20a6-4bae-ae96-3aeb52c75a4c", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "childassetId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26354,17 +26196,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:71ca0891-49a6-4095-9eec-1512a1e32a01", + "ownerItemId" : "urn:uuid:60900c59-4155-438d-9a04-599901ae75e0", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "childassetId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26373,17 +26215,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:26705c57-e946-4965-b203-1ca0e893edf5", + "ownerItemId" : "urn:uuid:2b501e75-9c06-4b99-a544-7b6eb320958a", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "childassetId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -26392,38 +26234,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:de2242ff-f394-425d-90fb-519986cc0f9e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f0597a67-f2e4-4fea-bc80-845e36a9db72", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "childassetId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -26649,7 +26473,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-883610489267919397198041", + "batteryIDDMCCode" : "NO-004408690175782905965278", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -26691,13 +26515,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-05-31", - "version" : 2.9, - "status" : "Approved" + "issueDate" : "2020-07-04", + "version" : 1.9, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.658, + "diameter" : 229.6711, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -26705,22 +26529,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2020-05-21", + "placedOnMarket" : "2020-05-22", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-883610489267919397198041", + "value" : "NO-004408690175782905965278", "key" : "PartInstanceID" } ], - "gtin" : " 78139498", + "gtin" : " 83161972", "additionalCode" : [ { "name" : "TARIC", - "value" : "567980732" + "value" : "208440030" } ] }, "sources" : { @@ -26742,7 +26566,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -26771,7 +26595,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-04-24", + "date" : "2021-02-17", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -26787,9 +26611,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.2616 ] + "left" : [ 1.6594 ] }, - "id" : "HP4995" + "id" : "TQ9835" } ] }, "additionalData" : [ { @@ -26815,9 +26639,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Sealant" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -26827,14 +26651,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 116 }, "state" : "first life" }, "operation" : { "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AVTH" } } @@ -26847,31 +26671,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -26886,11 +26726,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-23", + "currentStateOfHealthTimestamp" : "2023-03-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -26900,35 +26740,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "466131", + "orderNumber" : "973375", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "8863", + "referencedStandard" : "EN", + "referencedStandardID" : "4251", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -26939,28 +26779,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -26975,7 +26815,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-864415204672012382995251", + "value" : "NO-957187015679612885785906", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -26986,7 +26826,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -26998,10 +26838,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", + "assetId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -27010,17 +26850,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:072bb6c2-1eb4-4e56-abee-b9fb5bc1abb3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e46c1bbb-6c7b-4854-bfc8-ed7f76454904", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -27033,24 +26873,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -27276,7 +27098,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-864415204672012382995251", + "batteryIDDMCCode" : "NO-957187015679612885785906", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -27295,31 +27117,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:baf22b9b-bc08-472d-a636-86d5c63fc8bd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68ac7b42-4df7-4b66-8d24-3fb6bdbcbd6f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -27334,11 +27172,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-05-05", + "currentStateOfHealthTimestamp" : "2016-01-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -27348,23 +27186,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "661427", + "orderNumber" : "170077", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -27375,8 +27213,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8111", + "referencedStandard" : "AISI", + "referencedStandardID" : "5514", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -27388,21 +27226,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -27423,7 +27261,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-493676181103178298845139", + "value" : "NO-760592533179373962741529", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -27434,7 +27272,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -27446,10 +27284,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", + "assetId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -27458,17 +27296,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5e37e292-0127-4167-9f4f-cb99076b0b4d", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:466e8c96-ed23-4769-b2e1-8acd9fdae728", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -27481,24 +27319,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -27724,7 +27544,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-493676181103178298845139", + "batteryIDDMCCode" : "NO-760592533179373962741529", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -27743,31 +27563,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cbce3cfa-2ab1-4403-b6c2-475a3dc1d94a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6e857fcc-a35b-4c55-8bf9-89a7dd27ed5e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -27782,11 +27618,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-09-22", + "currentStateOfHealthTimestamp" : "2016-12-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -27796,35 +27632,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "366897", + "orderNumber" : "478567", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1132", + "referencedStandard" : "ISO", + "referencedStandardID" : "3841", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -27833,30 +27669,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -27871,7 +27707,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-791018505140292878166021", + "value" : "NO-708297363451953472023890", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -27882,7 +27718,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -27897,7 +27733,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", + "assetId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -27906,17 +27742,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:75b068da-aa67-4e6a-b520-481221293bc6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f27a10d4-41a3-4457-a901-fe9817072661", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -27929,24 +27765,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -28172,7 +27990,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-791018505140292878166021", + "batteryIDDMCCode" : "NO-708297363451953472023890", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -28191,31 +28009,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bf31877-5f06-4958-a4ac-c0b33728bd64", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:72673c26-1202-40d1-877e-730591c2d487", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -28230,11 +28064,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-22", + "currentStateOfHealthTimestamp" : "2021-11-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -28244,25 +28078,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "815598", + "orderNumber" : "719423", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -28271,8 +28105,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "8846", + "referencedStandard" : "EN", + "referencedStandardID" : "2943", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -28288,23 +28122,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -28319,7 +28153,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-136928786987253017532224", + "value" : "NO-029529278592433295756746", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -28330,7 +28164,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -28342,10 +28176,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", + "assetId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -28354,17 +28188,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2ddf726b-1c8d-4254-8b95-f2382d10158a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:24b4ed13-2f46-4af3-baf0-73346fcf32b1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -28377,24 +28211,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -28620,7 +28436,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-136928786987253017532224", + "batteryIDDMCCode" : "NO-029529278592433295756746", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -28639,31 +28455,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:86351d58-ee90-4450-b0e0-c5adf8b42018", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ed1b940-4612-406a-ae64-1c119d92eed3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -28678,11 +28510,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2022-07-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -28692,14 +28524,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "267061", + "orderNumber" : "573030", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -28708,9 +28540,9 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -28720,7 +28552,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "4880", + "referencedStandardID" : "2758", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -28732,27 +28564,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -28767,7 +28599,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-823948286883766869040317", + "value" : "NO-830575760219801993867025", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -28778,7 +28610,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -28793,7 +28625,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", + "assetId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -28802,17 +28634,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:296d4b41-5468-48c4-9c08-b016c8ecf54f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4b677509-4fdb-4ef1-9217-29aaf591adae", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -28825,24 +28657,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -29068,7 +28882,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-823948286883766869040317", + "batteryIDDMCCode" : "NO-830575760219801993867025", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -29087,31 +28901,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee49a7b9-963f-439c-9522-f78750b5e7df", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6b0f84f-1134-488a-8be9-1b25f35b534b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -29126,11 +28956,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-10", + "currentStateOfHealthTimestamp" : "2018-11-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -29140,19 +28970,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "589990", + "orderNumber" : "200739", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -29163,12 +28993,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7657", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7340", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -29179,7 +29009,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { @@ -29190,11 +29020,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -29215,7 +29045,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-587471081576721367794244", + "value" : "NO-684184848273081919696221", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -29226,7 +29056,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -29238,10 +29068,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", + "assetId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -29250,17 +29080,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5a48df90-7b8a-4b95-9344-52eca9965050", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:1be8fa2e-abad-456c-a3a3-6cacb8c383a6", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -29273,24 +29103,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -29516,7 +29328,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-587471081576721367794244", + "batteryIDDMCCode" : "NO-684184848273081919696221", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -29535,31 +29347,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3f97134-56f9-45fe-aad9-60d95a51d48f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f831d99-4a1a-44bb-8805-72f67ac33beb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -29574,11 +29402,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-19", + "currentStateOfHealthTimestamp" : "2021-03-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -29588,25 +29416,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "523416", + "orderNumber" : "862379", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -29615,8 +29443,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1489", + "referencedStandard" : "IS", + "referencedStandardID" : "3506", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -29625,10 +29453,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -29638,7 +29466,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -29648,7 +29476,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -29663,7 +29491,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-109272763412992271485457", + "value" : "NO-039223807230856042953836", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -29674,7 +29502,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -29689,7 +29517,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", + "assetId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -29698,17 +29526,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:295e2d27-7c8c-4e5a-81dd-5c530b21c778", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:03859396-dcec-4aa9-89f2-9ac6893bdf2b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -29721,24 +29549,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -29964,7 +29774,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-109272763412992271485457", + "batteryIDDMCCode" : "NO-039223807230856042953836", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -29983,31 +29793,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:332e8139-570d-401e-8dea-0b40da56ce69", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2a13488f-acbc-4784-8f20-11c096dc1d31", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -30022,11 +29848,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-11", + "currentStateOfHealthTimestamp" : "2021-10-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-13", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -30036,10 +29862,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "604789", + "orderNumber" : "379502", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -30048,23 +29874,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1043", + "referencedStandard" : "DIN", + "referencedStandardID" : "6140", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -30073,30 +29899,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -30111,7 +29937,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-148715251312244684318074", + "value" : "NO-347116735745663646665615", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -30122,7 +29948,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -30137,7 +29963,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", + "assetId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -30146,17 +29972,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c576a060-ff25-4a2f-b542-34d06030c193", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8facbc20-1048-48e2-8c07-61c8ce56eb7f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -30169,24 +29995,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -30412,7 +30220,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-148715251312244684318074", + "batteryIDDMCCode" : "NO-347116735745663646665615", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -30431,31 +30239,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9573354-8be4-45aa-be97-733e09f3e3e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ca209f5f-d454-4473-882a-9231f44ac3ad", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -30470,11 +30294,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-27", + "currentStateOfHealthTimestamp" : "2022-05-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -30484,35 +30308,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "111210", + "orderNumber" : "637159", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1999", + "referencedStandard" : "GB", + "referencedStandardID" : "2077", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -30521,10 +30345,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -30538,13 +30362,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -30559,7 +30383,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-080480141948547472036219", + "value" : "NO-945021193800451566340978", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -30570,7 +30394,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -30585,7 +30409,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", + "assetId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -30594,17 +30418,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dcf94afa-e965-4435-8341-c5489012be59", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:08e6d207-18a9-4474-a62f-f8d12cd9e314", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -30617,24 +30441,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -30860,7 +30666,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-080480141948547472036219", + "batteryIDDMCCode" : "NO-945021193800451566340978", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -30879,31 +30685,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b306df5-1cdb-41c0-b449-b8909e368276", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04117576-bc8d-45e4-a3d3-55edf8198ecb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -30918,11 +30740,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2018-02-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -30932,25 +30754,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "721267", + "orderNumber" : "932852", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -30959,8 +30781,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1845", + "referencedStandard" : "ASME", + "referencedStandardID" : "9882", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -30969,20 +30791,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -30992,7 +30814,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -31007,7 +30829,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-671408531894681437693915", + "value" : "NO-484325548258551080620438", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -31018,7 +30840,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -31030,10 +30852,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", + "assetId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -31042,17 +30864,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d0c68643-a52f-41ae-9b3f-387e41741101", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:cc0200a4-a4b3-4d73-bc75-307311119f9b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -31065,24 +30887,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -31308,7 +31112,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-671408531894681437693915", + "batteryIDDMCCode" : "NO-484325548258551080620438", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -31327,28 +31131,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9b4498c-3cbe-48ac-834f-07058aba93a3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c4834068-7c01-40ff-953f-19f9bbb7370b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:549fce25-6c7e-43cc-ad59-6d39992f9bf1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f264a2c8-e038-4b96-b4fc-614f9fbc0a71", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 31, + "recycledContent" : 49, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -31358,7 +31178,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 79, + "recycledContent" : 14, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -31368,7 +31188,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 48, + "recycledContent" : 52, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -31379,112 +31199,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -31492,35 +31312,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "575177", + "orderNumber" : "566097", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1123", + "referencedStandard" : "DIN", + "referencedStandardID" : "6795", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -31531,12 +31351,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -31546,7 +31366,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -31567,7 +31387,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-421487237719664337926264", + "value" : "NO-396892550112390060297089", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -31578,7 +31398,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -31590,10 +31410,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", + "assetId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -31602,17 +31422,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:169730f9-82c2-419e-bec4-679b074587e1", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:c8af13de-392d-41e5-bfbc-1b1ecb0f7079", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31621,17 +31441,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e924db85-85d0-44a1-85e9-f4ab255622b6", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:7655558e-965d-471d-833d-cd578a0cd63d", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "childassetId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31640,17 +31460,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7c4cffaa-7828-4fab-a805-de5eecec1be6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c38bb568-f5d9-475c-a6a0-a01ac9e6d0ca", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "childassetId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31659,17 +31479,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:304cfe22-30a3-45ad-8dee-86ec2a1a3951", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:af727811-cea7-4bb4-b449-163fa65f7b9d", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "childassetId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31678,17 +31498,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:13346a9c-c939-4477-bfde-9b8d1bf3eb46", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3b73978b-5ac4-435a-9aa9-53400eb6f850", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "childassetId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31697,17 +31517,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1cba473f-5ef8-4ea8-8247-c695813a0507", + "ownerItemId" : "urn:uuid:c36505bd-2206-4a4d-864e-a683dad84dc2", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "childassetId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31716,17 +31536,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:153c7f6f-c3d7-4473-9c0b-0fdd2af161a6", + "ownerItemId" : "urn:uuid:611c241e-8da3-4ab4-900b-88e0b796cd4b", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "childassetId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31735,17 +31555,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:632aaffc-66ce-4718-92f6-1176c2e1aca3", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:0a108d83-0f73-4e09-a5fe-63be92a672bb", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "childassetId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31754,17 +31574,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e4486c97-ca35-46a3-ab8c-c3e0931bb0c2", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:b9f09941-8a38-4b93-a81b-f0aafff659c8", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "childassetId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31773,17 +31593,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:56e69495-40bd-4652-be40-0e32b8153e11", + "ownerItemId" : "urn:uuid:a07ee93b-ec0c-41d9-95f7-ef51d49175f1", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "childassetId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -31792,38 +31612,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8c2ba5fe-0312-4618-8d66-f0188585c8c5", + "ownerItemId" : "urn:uuid:ca4d31b0-dc49-494d-a63a-b388f6072c1c", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "childassetId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -32049,7 +31851,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-421487237719664337926264", + "batteryIDDMCCode" : "NO-396892550112390060297089", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -32091,13 +31893,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-12-17", - "version" : 2.5, - "status" : "Expired" + "issueDate" : "2023-12-22", + "version" : 1.5, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6908, + "diameter" : 229.6886, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -32109,18 +31911,18 @@ } }, "commercial" : { - "placedOnMarket" : "2023-10-13", + "placedOnMarket" : "2022-09-18", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-421487237719664337926264", + "value" : "NO-396892550112390060297089", "key" : "PartInstanceID" } ], - "gtin" : " 58568407", + "gtin" : " 25020765", "additionalCode" : [ { "name" : "TARIC", - "value" : "284386811" + "value" : "603192610" } ] }, "sources" : { @@ -32142,7 +31944,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -32187,9 +31989,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 9.7722 ] + "left" : [ 4.5573 ] }, - "id" : "AB2318" + "id" : "CD2392" } ] }, "additionalData" : [ { @@ -32215,9 +32017,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Aluminium" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -32227,14 +32029,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 120 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003B2OM", "manufacturerId" : "BPNL00000003AVTH" } } @@ -32247,31 +32049,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -32286,11 +32104,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-10", + "currentStateOfHealthTimestamp" : "2023-10-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -32300,19 +32118,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "641081", + "orderNumber" : "245799", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -32327,8 +32145,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3197", + "referencedStandard" : "AS", + "referencedStandardID" : "1921", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -32337,14 +32155,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -32354,13 +32172,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -32375,7 +32193,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-657973422519230479340430", + "value" : "NO-936595542990754600925788", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -32386,7 +32204,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -32398,10 +32216,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", + "assetId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -32410,17 +32228,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:54335cc3-c3a9-4c6d-841b-9d6869d7518f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:043207b0-94d7-4a15-8d68-8bc7eee65927", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -32433,24 +32251,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -32676,7 +32476,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-657973422519230479340430", + "batteryIDDMCCode" : "NO-936595542990754600925788", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -32695,31 +32495,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f0740577-744a-4752-bd1b-159188dbce27", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:58874991-6fc3-4c00-a4d5-a75a8faf6ad6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -32734,11 +32550,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-08-26", + "currentStateOfHealthTimestamp" : "2019-10-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-30", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -32748,35 +32564,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "551084", + "orderNumber" : "787563", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1432", + "referencedStandard" : "ASME", + "referencedStandardID" : "2763", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -32785,30 +32601,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -32823,7 +32639,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-732408130437623009753172", + "value" : "NO-564950367804649428245953", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -32834,7 +32650,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -32846,10 +32662,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", + "assetId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -32858,17 +32674,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ab04d475-4d30-4039-b0ce-1f565317db77", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6b7394a6-e392-406d-98b6-ef092610dc87", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -32881,24 +32697,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -33124,7 +32922,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-732408130437623009753172", + "batteryIDDMCCode" : "NO-564950367804649428245953", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -33143,31 +32941,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbbb8f37-3070-4a1a-a057-f4d5416ca8a2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:356cf8c0-d8e7-4270-b1e9-21d2698279fb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -33182,11 +32996,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-02-12", + "currentStateOfHealthTimestamp" : "2015-05-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -33196,10 +33010,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "912331", + "orderNumber" : "53247", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -33208,23 +33022,23 @@ "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2489", + "referencedStandard" : "DIN", + "referencedStandardID" : "6936", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -33233,7 +33047,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 @@ -33246,17 +33060,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -33271,7 +33085,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-712777341404709239849724", + "value" : "NO-032804246183692203092051", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -33282,7 +33096,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -33294,10 +33108,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", + "assetId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -33306,17 +33120,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:801d7df0-96c4-4c05-9b00-244356090ef6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:e98ce1ac-72c3-4a67-8c5f-7b8010b63f68", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -33329,24 +33143,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -33572,7 +33368,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-712777341404709239849724", + "batteryIDDMCCode" : "NO-032804246183692203092051", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -33591,31 +33387,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:db44e01a-991b-4819-9343-34b1e60db79f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5d10c142-3928-49d4-a6d8-a9fbe7961c7e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -33630,11 +33442,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-02", + "currentStateOfHealthTimestamp" : "2020-11-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -33644,14 +33456,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "258856", + "orderNumber" : "475277", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { @@ -33660,9 +33472,9 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -33671,8 +33483,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1575", + "referencedStandard" : "JIS", + "referencedStandardID" : "4167", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -33684,7 +33496,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -33694,17 +33506,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -33719,7 +33531,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-275660379821389876239471", + "value" : "NO-157546003879482080514027", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -33730,7 +33542,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -33742,10 +33554,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", + "assetId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -33754,17 +33566,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:135ff411-75d6-4d5e-87f2-8fd3c709bdd5", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8092b9c2-4948-4120-889d-2d538b6b4d24", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -33777,24 +33589,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -34020,7 +33814,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-275660379821389876239471", + "batteryIDDMCCode" : "NO-157546003879482080514027", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34039,31 +33833,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:68d58ef2-9e47-4f0a-af0c-a7e6f5e5d16c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:17798e72-be09-461e-90e1-afe8459c88e3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -34078,11 +33888,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-18", + "currentStateOfHealthTimestamp" : "2019-12-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -34092,35 +33902,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "956265", + "orderNumber" : "758504", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "1435", + "referencedStandard" : "ASME", + "referencedStandardID" : "2286", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -34129,30 +33939,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -34167,7 +33977,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-874268115549473309109964", + "value" : "NO-177922074842125795420007", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -34178,7 +33988,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -34193,7 +34003,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", + "assetId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -34202,17 +34012,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:13484890-85d1-49cf-8913-163da1ea297f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:fe95aeed-a8c6-47b6-8e09-245ba22fc37f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -34225,24 +34035,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -34468,7 +34260,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-874268115549473309109964", + "batteryIDDMCCode" : "NO-177922074842125795420007", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34487,31 +34279,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bc2d1bc-6619-4fa3-a23e-c3520e35c933", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1152698a-9744-44dd-b509-8e6ff02200f7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -34526,11 +34334,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-20", + "currentStateOfHealthTimestamp" : "2018-09-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -34540,35 +34348,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "476029", + "orderNumber" : "46034", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8462", + "referencedStandard" : "JASO", + "referencedStandardID" : "6266", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -34577,10 +34385,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -34594,13 +34402,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -34615,7 +34423,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-804755969458043907284335", + "value" : "NO-214635896808155138901731", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -34626,7 +34434,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -34641,7 +34449,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", + "assetId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -34650,17 +34458,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b1a988dc-e01d-4dc7-bae8-ed2d0bca93e4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6e1fa2e4-244b-46e5-bf48-6c32c1fe06d0", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -34673,24 +34481,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -34916,7 +34706,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-804755969458043907284335", + "batteryIDDMCCode" : "NO-214635896808155138901731", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -34935,31 +34725,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5bacda61-da94-49c3-b735-7e9bf7ce8725", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4ce8764c-b792-45de-9301-7447059ff2f5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -34974,11 +34780,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-15", + "currentStateOfHealthTimestamp" : "2016-01-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -34988,25 +34794,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "484209", + "orderNumber" : "790172", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -35015,8 +34821,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6055", + "referencedStandard" : "AS", + "referencedStandardID" : "5815", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -35025,30 +34831,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -35063,7 +34869,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-613319179318249998509155", + "value" : "NO-717852589858335943379764", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -35074,7 +34880,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -35086,10 +34892,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", + "assetId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -35098,17 +34904,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8cb2eddf-2036-4fb1-bdc1-a4825eb2822e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:de3019b8-3e6d-4dfa-96ef-6126afea13c7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -35121,24 +34927,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -35364,7 +35152,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-613319179318249998509155", + "batteryIDDMCCode" : "NO-717852589858335943379764", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -35383,31 +35171,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1d10eda9-3a5b-4f8f-8993-5653c02d7a16", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7083f045-c442-4cd4-a16b-1570db5bc64f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -35422,11 +35226,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-06", + "currentStateOfHealthTimestamp" : "2016-02-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -35436,35 +35240,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "494277", + "orderNumber" : "489266", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "9889", + "referencedStandard" : "AISI", + "referencedStandardID" : "9239", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -35473,14 +35277,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -35490,7 +35294,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -35511,7 +35315,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-054137834947942447689111", + "value" : "NO-757694058301393495015233", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -35522,7 +35326,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -35534,10 +35338,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", + "assetId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -35546,17 +35350,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6a9d095d-a988-440d-acf0-660677522014", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:89d92daf-3349-4b9d-a2cf-b6fe2f02b249", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -35569,24 +35373,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -35812,7 +35598,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-054137834947942447689111", + "batteryIDDMCCode" : "NO-757694058301393495015233", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -35831,31 +35617,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a570edf6-3e19-4caf-b7d2-c9e7c4b1d2f2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:971580b6-c1bd-4850-a6b9-84f6bc85d956", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -35870,11 +35672,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-27", + "currentStateOfHealthTimestamp" : "2021-10-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -35884,35 +35686,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "689401", + "orderNumber" : "734537", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3427", + "referencedStandard" : "ISO", + "referencedStandardID" : "9978", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -35921,14 +35723,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -35938,13 +35740,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -35959,7 +35761,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-295359038428033538101406", + "value" : "NO-795678168368907772963536", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -35970,7 +35772,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -35985,7 +35787,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", + "assetId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -35994,17 +35796,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bfda2cef-43dd-458e-832e-813cdf46be9f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:26802797-1542-464f-9e0f-5f531b88dd5a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -36017,24 +35819,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -36260,7 +36044,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-295359038428033538101406", + "batteryIDDMCCode" : "NO-795678168368907772963536", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -36279,31 +36063,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee5bc886-dac7-4f30-9efb-9369b8a7e0e8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:132f582c-07a4-4cf3-95cd-3a0ab718731f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -36318,11 +36118,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-05-21", + "currentStateOfHealthTimestamp" : "2016-04-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -36332,35 +36132,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "893293", + "orderNumber" : "673465", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8058", + "referencedStandard" : "GB", + "referencedStandardID" : "3670", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -36371,22 +36171,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -36407,7 +36207,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-508562801787981572367093", + "value" : "NO-729292714417407952927805", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -36418,7 +36218,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -36433,7 +36233,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", + "assetId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -36442,17 +36242,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:71f692c6-666b-4b55-9bb8-5eca46c7427b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4c99f3b4-eb48-4913-8ce4-7ea0736f6606", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -36465,24 +36265,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -36708,7 +36490,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-508562801787981572367093", + "batteryIDDMCCode" : "NO-729292714417407952927805", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -36727,28 +36509,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57a1a4b3-7ca6-4643-a758-80f2f6d4f491", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:91f3b7a6-7ef6-4ba5-9709-e89dc907ad0f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:71791f6a-3e19-4672-98fd-58311923635e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fe81cb9d-b9c6-49b0-8099-09e78d42306c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 41, + "recycledContent" : 6, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -36758,7 +36556,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 26, + "recycledContent" : 63, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -36768,7 +36566,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 87, + "recycledContent" : 78, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -36779,112 +36577,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -36892,35 +36690,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "953493", + "orderNumber" : "32775", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6276", + "referencedStandard" : "ISO", + "referencedStandardID" : "6565", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -36932,17 +36730,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -36952,7 +36750,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -36967,7 +36765,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-649025193247744815308547", + "value" : "NO-359081035858409777849821", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -36978,7 +36776,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -36990,10 +36788,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", + "assetId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -37002,17 +36800,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:59d5a09f-265a-4255-930a-69499e6099a1", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4d45be30-b376-45a6-bdf0-2fa13737d8ab", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37021,17 +36819,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e835451c-55d1-4583-b120-5b05b4fe4298", + "ownerItemId" : "urn:uuid:9af73eca-ac28-4881-9194-d236c60a48f1", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "childassetId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37040,17 +36838,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:47a14445-3677-42b5-8f58-4fc036767737", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:2540f719-3308-41c7-9088-40e810f012d9", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "childassetId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37059,17 +36857,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:42df3cfd-be3a-4a23-8cbb-4886f5f42310", + "ownerItemId" : "urn:uuid:dc4cf5d0-5057-48b7-b314-716e49c424bb", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "childassetId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37078,17 +36876,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:891a63c7-b3fb-4165-ba99-9318634c3c3e", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:a4c54ca6-2b76-460d-8102-652581dd4bda", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "childassetId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37097,17 +36895,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bad2579c-8d56-4cde-ae3f-106b91207f16", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:473a8d81-7e3b-4cff-ab0d-822ed6318339", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "childassetId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37116,17 +36914,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:af6d4227-3759-4c93-8400-88750f845d42", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:331fe0d2-fb42-46a1-ab1a-0db5b024737d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "childassetId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37135,17 +36933,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:39db236d-265d-4e53-81f1-89c3a42280c2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:f4226f53-db35-44c3-94e4-aa8fccb4cef9", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "childassetId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37154,17 +36952,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d815f036-f26c-4f88-8ce6-573fc3c8e978", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:cdacc4d2-f624-4740-9f5d-b894f7a0c222", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "childassetId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37173,17 +36971,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e7cf96b2-2184-4400-b6a7-3191969893e2", + "ownerItemId" : "urn:uuid:8c53ca79-bd7a-45df-ae29-813b57aff9c7", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "childassetId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -37192,38 +36990,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9418e4fc-f1a0-42a1-8bb0-b637d0ea2e8f", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:19fabf5f-be0e-4c2c-b8bc-ba93aa20f5dd", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "childassetId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -37449,7 +37229,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-649025193247744815308547", + "batteryIDDMCCode" : "NO-359081035858409777849821", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -37491,13 +37271,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-08-13", - "version" : 1.1, - "status" : "Approved" + "issueDate" : "2024-04-02", + "version" : 1.6, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6209, + "diameter" : 229.6937, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -37505,22 +37285,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2021-01-11", + "placedOnMarket" : "2022-04-13", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-649025193247744815308547", + "value" : "NO-359081035858409777849821", "key" : "PartInstanceID" } ], - "gtin" : " 58303814", + "gtin" : " 50397385", "additionalCode" : [ { "name" : "TARIC", - "value" : "172951776" + "value" : "340059295" } ] }, "sources" : { @@ -37542,7 +37322,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -37571,7 +37351,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-11-10", + "date" : "2024-04-02", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -37587,9 +37367,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.7691 ] + "left" : [ 0.67 ] }, - "id" : "EV5532" + "id" : "UZ1361" } ] }, "additionalData" : [ { @@ -37612,10 +37392,10 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Graphite" + "name" : "Sealant" } ], "critical" : [ "Manganese" ], "carbonFootprint" : { @@ -37627,14 +37407,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 120 + "carbonContentTotal" : 105 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AVTH" } } @@ -37647,31 +37427,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d65a4aca-6cb7-4791-a430-4b8d9ce1f1a4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f204622a-f4f3-4be7-b255-06c27524984b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -37686,11 +37482,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-09", + "currentStateOfHealthTimestamp" : "2022-12-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -37700,35 +37496,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "839204", + "orderNumber" : "822067", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2411", + "referencedStandard" : "JIS", + "referencedStandardID" : "7702", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -37737,14 +37533,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -37760,7 +37556,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -37775,7 +37571,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-478966071391968090480935", + "value" : "NO-970096378233819741474519", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -37786,7 +37582,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -37801,7 +37597,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", + "assetId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -37810,17 +37606,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3240960f-1f84-4e53-bc45-cd326f27b452", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3b52a4e1-5990-4c8b-b647-8a8fb6fcc127", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -37833,24 +37629,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -38076,7 +37854,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-478966071391968090480935", + "batteryIDDMCCode" : "NO-970096378233819741474519", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -38095,31 +37873,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8972af5-b028-4665-818a-197019b1a2e4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:10ded4f6-f3e7-4675-9e2c-52d56ebc8f99", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -38134,11 +37928,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-09", + "currentStateOfHealthTimestamp" : "2015-06-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -38148,35 +37942,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "361335", + "orderNumber" : "812432", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1733", + "referencedStandard" : "AS", + "referencedStandardID" : "1181", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -38185,10 +37979,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -38198,17 +37992,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -38223,7 +38017,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-335150056102107596933721", + "value" : "NO-318132647172819069875892", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -38234,7 +38028,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -38246,10 +38040,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", + "assetId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -38258,17 +38052,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:51b3cf5d-11f4-4db6-a584-02ecc5bdedec", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6276ac23-f044-4397-ab55-35a5a1bbfbd3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -38281,24 +38075,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -38524,7 +38300,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-335150056102107596933721", + "batteryIDDMCCode" : "NO-318132647172819069875892", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -38543,31 +38319,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d148fad5-4c9a-488a-9b43-150d338559f2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:23f33b6f-17ff-4c73-a73e-966320cd47c3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -38582,11 +38374,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-17", + "currentStateOfHealthTimestamp" : "2018-08-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -38596,35 +38388,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "105259", + "orderNumber" : "852229", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "9968", + "referencedStandard" : "AS", + "referencedStandardID" : "9040", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -38635,12 +38427,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -38650,13 +38442,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -38671,7 +38463,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-809969344592637616415689", + "value" : "NO-005302332284040801035461", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -38682,7 +38474,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -38697,7 +38489,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", + "assetId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -38706,17 +38498,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8b1028ea-217a-4876-b747-0410b9b185b7", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3b66433a-5011-4e54-9404-f105257c3822", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -38729,24 +38521,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -38972,7 +38746,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-809969344592637616415689", + "batteryIDDMCCode" : "NO-005302332284040801035461", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -38991,31 +38765,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9441237e-a294-4007-94a1-649188a8fcc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc9ba4a1-7e17-4de7-b5b4-32c709ab49d9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -39030,11 +38820,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-10-30", + "currentStateOfHealthTimestamp" : "2018-04-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39044,25 +38834,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "307973", + "orderNumber" : "205779", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -39071,8 +38861,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8934", + "referencedStandard" : "GB", + "referencedStandardID" : "6909", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -39081,24 +38871,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -39119,7 +38909,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-428529070818912818758400", + "value" : "NO-633235849695047729477643", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -39130,7 +38920,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -39142,10 +38932,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", + "assetId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -39154,17 +38944,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6fe7d49a-4569-4fc3-841e-3b93a22ca927", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2cb8a82d-2426-4f0c-9517-04b2172c62f3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -39177,24 +38967,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -39420,7 +39192,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-428529070818912818758400", + "batteryIDDMCCode" : "NO-633235849695047729477643", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -39439,31 +39211,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a034ab84-f6ae-41c3-a224-02351f573057", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c3fc31a-a02c-48b5-a722-cd10900df556", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -39478,11 +39266,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-03", + "currentStateOfHealthTimestamp" : "2015-06-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39492,35 +39280,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "893839", + "orderNumber" : "397350", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9261", + "referencedStandard" : "AISI", + "referencedStandardID" : "5679", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -39529,14 +39317,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -39546,13 +39334,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -39567,7 +39355,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-325143358634226278153686", + "value" : "NO-180507091805456863307743", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -39578,7 +39366,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -39590,10 +39378,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", + "assetId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -39602,17 +39390,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:75435db2-3868-4a77-a72f-78f96faad8b7", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8bcd47a4-f3df-47e7-9049-38d5b756c784", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -39625,24 +39413,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -39868,7 +39638,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-325143358634226278153686", + "batteryIDDMCCode" : "NO-180507091805456863307743", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -39887,31 +39657,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7d0dd375-4491-47c5-8e84-4db3f02151ef", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3e388884-567a-4406-86d8-629086d5cffa", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -39926,11 +39712,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-06", + "currentStateOfHealthTimestamp" : "2023-08-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -39940,35 +39726,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "909402", + "orderNumber" : "98968", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8746", + "referencedStandard" : "AISI", + "referencedStandardID" : "1757", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -39977,10 +39763,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -40000,7 +39786,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -40015,7 +39801,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-123760690132854833745762", + "value" : "NO-296563716806108031733209", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -40026,7 +39812,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -40038,10 +39824,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", + "assetId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -40050,17 +39836,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:55ef973f-260b-452e-bfd6-3e359ec8918c", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c434c740-67a0-4912-a776-5323455b3002", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -40073,24 +39859,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -40316,7 +40084,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-123760690132854833745762", + "batteryIDDMCCode" : "NO-296563716806108031733209", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -40335,31 +40103,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c810cc7-48e5-4f78-803e-b055ff3c7499", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e72768b0-2386-4386-a92f-c155d64ee3b0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -40374,11 +40158,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-05-10", + "currentStateOfHealthTimestamp" : "2019-10-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -40388,35 +40172,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "549487", + "orderNumber" : "727116", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1699", + "referencedStandard" : "GB", + "referencedStandardID" : "5117", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -40425,10 +40209,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -40438,17 +40222,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -40463,7 +40247,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-202618736706229575349972", + "value" : "NO-250801480041613674840227", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -40474,7 +40258,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -40486,10 +40270,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", + "assetId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -40498,17 +40282,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:82c4d997-9689-4641-8a39-200b0848aede", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:dee493d3-1fa7-45cd-b2c5-abe9fc01b257", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -40521,24 +40305,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -40764,7 +40530,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-202618736706229575349972", + "batteryIDDMCCode" : "NO-250801480041613674840227", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -40783,31 +40549,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3f5b0da7-8065-4c99-8a39-fa3c81c8df24", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:df1215c6-7e6c-4fdc-8c56-50a82889c907", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -40822,11 +40604,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-15", + "currentStateOfHealthTimestamp" : "2014-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -40836,25 +40618,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "989917", + "orderNumber" : "609854", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -40863,8 +40645,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3060", + "referencedStandard" : "ASME", + "referencedStandardID" : "4653", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -40876,11 +40658,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -40890,13 +40672,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -40911,7 +40693,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-332282418462283630241021", + "value" : "NO-733273787017273071493331", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -40922,7 +40704,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -40934,10 +40716,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", + "assetId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -40946,17 +40728,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bfea1181-1f4c-4571-b52d-91d5a060833e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:afc9b849-2425-417e-9dce-a876771821d8", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -40969,24 +40751,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -41212,7 +40976,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-332282418462283630241021", + "batteryIDDMCCode" : "NO-733273787017273071493331", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -41231,31 +40995,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8bb59375-dffd-46cb-a560-ca2c3031a549", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:11b2512c-3684-4345-bca1-94da74cbc082", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -41270,11 +41050,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-24", + "currentStateOfHealthTimestamp" : "2023-10-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -41284,35 +41064,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "558744", + "orderNumber" : "534200", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5000", + "referencedStandard" : "GB", + "referencedStandardID" : "1356", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -41321,24 +41101,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -41359,7 +41139,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-661181049931223872649703", + "value" : "NO-092034534832069879588800", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -41370,7 +41150,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -41385,7 +41165,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", + "assetId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -41394,17 +41174,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:275da478-579d-4cd2-94fe-9a637090bf99", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d2b5ce7d-91b8-472f-b0ea-ef96aeef77fa", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -41417,24 +41197,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -41660,7 +41422,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-661181049931223872649703", + "batteryIDDMCCode" : "NO-092034534832069879588800", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -41679,31 +41441,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e90863be-67f3-4a6c-b36e-d1f8d68941cf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e14681cd-fd92-4c05-9f46-fdb654b7190e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -41718,11 +41496,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-14", + "currentStateOfHealthTimestamp" : "2017-05-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -41732,35 +41510,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "361193", + "orderNumber" : "381911", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "5792", + "referencedStandard" : "JASO", + "referencedStandardID" : "7211", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -41769,14 +41547,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -41786,13 +41564,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -41807,7 +41585,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-045025435576056642106570", + "value" : "NO-736835087578073393468258", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -41818,7 +41596,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -41830,10 +41608,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", + "assetId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -41842,17 +41620,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0c0ca7b0-9908-4de8-bc68-15f64c1ab8a4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4e753e0e-32f4-4ef0-a68e-c714df1849e1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -41865,24 +41643,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -42108,7 +41868,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-045025435576056642106570", + "batteryIDDMCCode" : "NO-736835087578073393468258", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -42127,28 +41887,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:addcc726-100e-42e7-96c3-018cc77fafaa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:32e17c20-3194-4970-a52c-b2af2fa9288d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:40cd75e1-723c-4a22-b8d8-d9a34417431e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5679e47b-d11e-488b-bf24-e33d5b560614", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 65, + "recycledContent" : 25, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -42158,7 +41934,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 76, + "recycledContent" : 74, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -42168,7 +41944,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 7, + "recycledContent" : 43, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -42178,7 +41954,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 71, + "recycledContent" : 4, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -42188,7 +41964,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 4, + "recycledContent" : 87, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -42198,7 +41974,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 86, + "recycledContent" : 52, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -42208,7 +41984,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 47, + "recycledContent" : 3, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -42218,7 +41994,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 42, + "recycledContent" : 12, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -42228,7 +42004,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 80, + "recycledContent" : 71, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -42238,7 +42014,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 54, + "recycledContent" : 66, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -42249,356 +42025,356 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", "childItems" : [ { - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { - "value" : "XM-20", + "value" : "ZZ-43", "key" : "manufacturerPartId" }, { - "value" : "OMACDBUHKIXKCMYBT", + "value" : "OMCLTKSQIIWSAVTDX", "key" : "partInstanceId" }, { - "value" : "OMACDBUHKIXKCMYBT", + "value" : "OMCLTKSQIIWSAVTDX", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2020-02-01T11:52:28.000Z", + "date" : "2014-04-13T19:40:44.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", "partTypeInformation" : { - "manufacturerPartId" : "XM-20", + "manufacturerPartId" : "ZZ-43", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -42606,29 +42382,29 @@ } ], "nameAtManufacturer" : "Vehicle Fully Electric" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "" } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Coupé", - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", + "bodyVariant" : "Cabrio-Limousine", + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", "engine" : { "size" : 2998, "power" : 143 @@ -42638,6 +42414,10 @@ "vehicleModel" : "Vehicle Fully Electric", "productionDateGMT" : "2010-01-01", "equipmentVariants" : [ { + "code" : "A01CR", + "description" : "remote engine start", + "group" : "special equipment" + }, { "code" : "S388C", "description" : "security plus", "group" : "special equipment" @@ -42646,51 +42426,47 @@ "description" : "steering wheel heating", "group" : "special equipment" }, { - "code" : "A01CR", - "description" : "remote engine start", - "group" : "special equipment" - }, { - "code" : "A458D", - "description" : "parking assistance ", + "code" : "C247R", + "description" : "trailer hitch", "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2018-02-28", + "mileageTimestamp" : "2022-07-12", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "635211", + "orderNumber" : "925194", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7359", + "referencedStandard" : "JASO", + "referencedStandardID" : "6712", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -42701,28 +42477,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -42731,13 +42507,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-300645322195279224647156", + "value" : "NO-058312915657981127343520", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -42754,7 +42530,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -42766,56 +42542,54 @@ "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", "partTypeInformation" : { "ownerPartId" : "73849201-61", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Catalysator", "partClassification" : [ { "value" : "Catalysator", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5488e48d-5842-493b-9041-1d27a1d3d467", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bd30d13e-e104-4c96-a629-aacd0413021f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "childItems" : [ { - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -42823,25 +42597,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "306254", + "orderNumber" : "134654", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -42851,7 +42625,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "JIS", - "referencedStandardID" : "1480", + "referencedStandardID" : "6817", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -42862,28 +42636,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -42898,7 +42672,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-314061229466361556071536", + "value" : "NO-828789896602323276359989", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -42915,7 +42689,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -42927,10 +42701,10 @@ "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "assetId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -42939,29 +42713,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:15868485-0fc6-42a1-94c7-7d7d518990d0", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:7b6ea66e-54b4-4190-9eb8-28455fdacd2f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "childassetId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", "partTypeInformation" : { "ownerPartId" : "22782277-50", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Door front-left", "partClassification" : [ { @@ -42971,27 +42745,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "72994826PTN", + "value" : "33394911HGO", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -43002,7 +42774,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -43015,35 +42787,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "188157", + "orderNumber" : "340235", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2637", + "referencedStandard" : "AISI", + "referencedStandardID" : "5536", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43059,23 +42831,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -43090,7 +42862,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-720426909780861540771729", + "value" : "NO-885256708530390045836416", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -43101,7 +42873,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -43113,22 +42885,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "assetId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -43138,31 +42910,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:93bc97b5-88b7-4f82-a160-8bedf9dc03c2", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa206766-3f60-49b2-84fc-7a82cd3aaa5b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fc55ad2b-672f-48af-9011-0830ff13f6d1", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:66090077-6dc8-4ca7-a56e-b6a6dd02d5b4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "childItems" : [ { - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -43170,25 +42940,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "932970", + "orderNumber" : "544187", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -43197,8 +42967,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9670", + "referencedStandard" : "DIN", + "referencedStandardID" : "5155", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43210,7 +42980,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -43220,11 +42990,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -43245,7 +43015,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-895320576393660790702186", + "value" : "NO-454490705156894111920051", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -43262,7 +43032,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -43274,10 +43044,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "assetId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -43286,29 +43056,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6e00ae59-8e13-4e95-b2c5-f0d429f9c067", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:70eea669-5fc3-4160-9a69-8a2605e49b30", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "childassetId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -43318,27 +43088,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "11820948CYH", + "value" : "12893319GXN", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -43349,7 +43117,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -43362,35 +43130,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "158524", + "orderNumber" : "213041", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2020", + "referencedStandard" : "JIS", + "referencedStandardID" : "2243", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43399,30 +43167,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -43437,7 +43205,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-165918348059332899986718", + "value" : "NO-499009584330431877361640", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -43448,7 +43216,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -43460,22 +43228,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "assetId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -43485,53 +43253,51 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b89f087e-0488-4c5a-9ee0-4133548b436a", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f4fb9434-6b2f-4581-8db1-eca740664964", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5deb7df-9f3a-477d-b96d-a9216e046a10", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4235f1cf-d303-4b79-bdb1-7a31526bbabd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "928774", + "orderNumber" : "727783", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8546", + "referencedStandard" : "DIN", + "referencedStandardID" : "3586", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43540,30 +43306,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -43572,13 +43338,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-539699124243847797443656", + "value" : "NO-529380834656608753684129", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -43589,7 +43355,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -43601,78 +43367,76 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { "value" : "Door rear-left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:267fabf0-9727-413f-bf09-b1bbb398eb3a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bbb1ca68-0d86-4e23-9d13-8b66ef676f5d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "578586", + "orderNumber" : "259464", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6652", + "referencedStandard" : "DIN", + "referencedStandardID" : "9413", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43681,30 +43445,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -43713,13 +43477,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-744737867632442042678606", + "value" : "NO-870150178712038444914762", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -43736,7 +43500,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -43748,78 +43512,76 @@ "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", "partTypeInformation" : { "ownerPartId" : "28673126-98", - "partVersion" : "03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door rear-right", "partClassification" : [ { "value" : "Door rear-right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8c2ab488-b1fd-44a3-8b26-2bda996ab8e8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:90aa937c-b9c2-4852-922f-0918cd24d4fe", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "951165", + "orderNumber" : "432267", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8043", + "referencedStandard" : "ISO", + "referencedStandardID" : "8967", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43830,18 +43592,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -43851,7 +43613,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -43860,13 +43622,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-590903203146053071493601", + "value" : "NO-559141980423426926539653", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -43883,7 +43645,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -43895,78 +43657,76 @@ "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", "partTypeInformation" : { "ownerPartId" : "94421589-82", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Engine hood", "partClassification" : [ { "value" : "Engine hood", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c0726ad-b57b-4db1-aa80-677f1caeef7c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:08088765-8c3c-4394-8c91-394a61453725", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "37350", + "orderNumber" : "65259", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "9566", + "referencedStandard" : "ASME", + "referencedStandardID" : "5431", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -43978,27 +43738,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -44007,13 +43767,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-242804366786572471820393", + "value" : "NO-088469086393847675759224", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44024,7 +43784,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -44036,78 +43796,76 @@ "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", "partTypeInformation" : { "ownerPartId" : "85023955-75", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tailgate", "partClassification" : [ { "value" : "Tailgate", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:385fb1f8-7532-4e0c-a661-8dbc394e74d6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d14ce067-46ef-4105-b786-edb6ad92e804", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "646452", + "orderNumber" : "632911", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "5891", + "referencedStandard" : "EN", + "referencedStandardID" : "9419", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44116,30 +43874,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -44148,13 +43906,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-186655058764365149435120", + "value" : "NO-352265423281673006053418", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44165,7 +43923,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -44180,16 +43938,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", "partTypeInformation" : { "ownerPartId" : "13769860-47", "partVersion" : "05", @@ -44197,58 +43955,56 @@ "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:49749cdc-383b-4a5c-8dbc-5f0b9dd32680", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ccb989ae-d1fe-409e-9f5b-267f9a153d3b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "835367", + "orderNumber" : "31315", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "6452", + "referencedStandard" : "AS", + "referencedStandardID" : "9484", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44264,7 +44020,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -44274,13 +44030,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -44289,13 +44045,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-325730621671852447010652", + "value" : "NO-612914357446690451421383", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44306,7 +44062,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -44318,78 +44074,76 @@ "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", "partTypeInformation" : { "ownerPartId" : "36643162-35", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b4e3221-b6f6-42c6-a5d0-263909bb8954", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c118681-a117-401f-8cbe-31304cf8118f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "424181", + "orderNumber" : "959336", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7559", + "referencedStandard" : "JIS", + "referencedStandardID" : "8008", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44398,9 +44152,9 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { @@ -44411,17 +44165,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -44430,13 +44184,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-056039171230050894869071", + "value" : "NO-738575759557152059293185", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44447,7 +44201,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -44459,78 +44213,76 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { "value" : "Bumper front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:092c160b-203f-4537-bcf8-b144e53d6064", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:071bf83c-ede2-41a4-b197-012f9bd35946", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "374858", + "orderNumber" : "443701", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5133", + "referencedStandard" : "AISI", + "referencedStandardID" : "7998", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44542,27 +44294,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -44571,13 +44323,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-929360720249973155212015", + "value" : "NO-595595006629612700374000", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44588,7 +44340,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -44600,78 +44352,76 @@ "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", "partTypeInformation" : { "ownerPartId" : "22768257-25", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Bumper rear", "partClassification" : [ { "value" : "Bumper rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b7ace9c9-56cd-450e-ad64-65e166f2fd99", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7e5268d1-54c0-4be5-8133-adba3d1c61a6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "123490", + "orderNumber" : "648459", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "4347", + "referencedStandard" : "EN", + "referencedStandardID" : "9152", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44682,28 +44432,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -44712,13 +44462,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-024321342753700806308454", + "value" : "NO-586221622801763693687724", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44729,7 +44479,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -44741,78 +44491,76 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { "value" : "Exterior mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70b65884-05d1-42d4-b15a-6811afd9a375", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:36acc9b2-4064-4f61-841c-9f94a163af8b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "441430", + "orderNumber" : "649035", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5392", + "referencedStandard" : "IS", + "referencedStandardID" : "2361", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44821,14 +44569,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -44838,13 +44586,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -44853,13 +44601,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-662646120446395356026373", + "value" : "NO-944539773288669451332122", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -44870,7 +44618,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -44882,68 +44630,66 @@ "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", "partTypeInformation" : { "ownerPartId" : "58471477-24", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Exterior mirror right", "partClassification" : [ { "value" : "Exterior mirror right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23323f63-a1af-4976-8386-54b02b237d03", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1a3d7f33-7544-446a-807e-9a110d7aaea7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "152188", + "orderNumber" : "146187", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -44952,8 +44698,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "7828", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "8894", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -44962,10 +44708,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -44975,7 +44721,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -44985,7 +44731,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -44994,13 +44740,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-819527814255352957903088", + "value" : "NO-090046616329838127958612", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45011,7 +44757,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -45026,16 +44772,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", "partTypeInformation" : { "ownerPartId" : "09002013-68", "partVersion" : "01", @@ -45043,58 +44789,56 @@ "partDescription" : "Tailer coupling", "partClassification" : [ { "value" : "Tailer coupling", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8afa8d2a-eaf8-417a-bdeb-2903d26a6dc0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:465428c8-16bc-42ae-9f7d-d9edbe21be11", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "79195", + "orderNumber" : "84028", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "2941", + "referencedStandard" : "AISI", + "referencedStandardID" : "2337", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45103,30 +44847,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -45135,13 +44879,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-971046622889574251783182", + "value" : "NO-462536285410053826378363", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45152,7 +44896,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -45167,16 +44911,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", "partTypeInformation" : { "ownerPartId" : "43501996-98", "partVersion" : "03", @@ -45184,58 +44928,56 @@ "partDescription" : "Dashboard", "partClassification" : [ { "value" : "Dashboard", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:899d97ee-604c-4d23-b724-77384c267075", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2d051085-01cc-40ff-b430-4dc10e017bf4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "271520", + "orderNumber" : "480058", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "9795", + "referencedStandard" : "IS", + "referencedStandardID" : "4290", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45244,24 +44986,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -45276,13 +45018,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-482042071643254440574034", + "value" : "NO-172274751687857627767355", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45293,7 +45035,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -45305,78 +45047,76 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { "value" : "Steering wheel", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7a740ea-3521-41fc-9701-fa980982c1c4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ae66169-69ae-495d-93b7-da6359c08724", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "144638", + "orderNumber" : "425930", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "1999", + "referencedStandard" : "GB", + "referencedStandardID" : "9430", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45385,10 +45125,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -45398,17 +45138,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -45417,13 +45157,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-777931149768338951967480", + "value" : "NO-579949786958122834348139", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45434,7 +45174,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -45449,16 +45189,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", "partTypeInformation" : { "ownerPartId" : "20125432-59", "partVersion" : "03", @@ -45466,58 +45206,56 @@ "partDescription" : "Indicator left", "partClassification" : [ { "value" : "Indicator left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:392eb006-7b01-4d51-a2e4-fc8b590e4553", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0e3617b8-e7f2-4383-a109-a0e73fb0f414", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "198744", + "orderNumber" : "318204", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "3706", + "referencedStandard" : "DIN", + "referencedStandardID" : "4190", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45526,14 +45264,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -45549,7 +45287,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -45558,13 +45296,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-878560885728027798550134", + "value" : "NO-048096235253954167013742", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45575,7 +45313,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -45587,78 +45325,76 @@ "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", "partTypeInformation" : { "ownerPartId" : "19073706-76", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Indicator right", "partClassification" : [ { "value" : "Indicator right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec00bae9-81a4-43c1-8199-6f683baa21c5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f443a69-0b87-49bb-b55d-defb58b9940a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "658003", + "orderNumber" : "575362", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "8572", + "referencedStandardID" : "7976", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45669,28 +45405,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -45699,13 +45435,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-805496419550529915215563", + "value" : "NO-177557979104500280812861", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45716,7 +45452,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -45728,78 +45464,76 @@ "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", "partTypeInformation" : { "ownerPartId" : "45415162-57", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Led headlight", "partClassification" : [ { "value" : "Led headlight", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc32fb62-b50d-4e4f-8dac-e02736b7ed31", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68e2466c-4e2f-442b-b8b7-492911bae610", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "368794", + "orderNumber" : "264771", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8922", + "referencedStandard" : "EN", + "referencedStandardID" : "7444", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45810,28 +45544,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -45840,13 +45574,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-433766484921905567586722", + "value" : "NO-557750946606305333383371", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45857,7 +45591,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -45869,78 +45603,76 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { "value" : "Starter motor", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5d68ec50-7cd6-4d3f-aa0c-592e9ab34e08", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2491ff76-5d2d-4c4a-8aa3-8a28863d0e93", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "234878", + "orderNumber" : "695689", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4094", + "referencedStandard" : "JASO", + "referencedStandardID" : "2910", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -45949,10 +45681,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -45962,17 +45694,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -45981,13 +45713,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-073558896157054603099567", + "value" : "NO-214979211528771174001672", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -45998,7 +45730,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -46010,53 +45742,51 @@ "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", "partTypeInformation" : { "ownerPartId" : "81324139-23", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Alternator", "partClassification" : [ { "value" : "Alternator", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:22e8d859-0b5f-4568-8cfd-86f73cb64c23", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:053623f4-8f1b-4a8a-ba61-92f5f1e2907e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "480191", + "orderNumber" : "154812", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -46069,19 +45799,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4281", + "referencedStandard" : "GB", + "referencedStandardID" : "1479", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46090,30 +45820,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -46122,13 +45852,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-816086921018811899598551", + "value" : "NO-014664588560503861143502", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46139,7 +45869,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -46151,78 +45881,76 @@ "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", "partTypeInformation" : { "ownerPartId" : "57929013-09", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Air conditioning compressor", "partClassification" : [ { "value" : "Air conditioning compressor", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6adb7f63-db1d-4144-b26a-1c2b46e5693d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1100d2f5-cfb6-4da1-8c87-f04b557fe8fc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "908858", + "orderNumber" : "830407", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2172", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2313", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46234,7 +45962,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -46244,17 +45972,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -46263,13 +45991,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-395437355406898483813611", + "value" : "NO-217207783928800567323032", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46280,7 +46008,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -46292,78 +46020,76 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { "value" : "Taillight rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:61d4147f-27ee-4715-8166-89f7a68f0313", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:046583d6-fa6f-4f2c-815e-bac9e9015cf9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "194779", + "orderNumber" : "448238", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8922", + "referencedStandard" : "AS", + "referencedStandardID" : "6986", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46374,28 +46100,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -46404,13 +46130,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-614870102083581603073819", + "value" : "NO-192432464950241883302809", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46421,7 +46147,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -46436,16 +46162,16 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", "partTypeInformation" : { "ownerPartId" : "78744126-74", "partVersion" : "02", @@ -46453,58 +46179,56 @@ "partDescription" : "Taillight front", "partClassification" : [ { "value" : "Taillight front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7fe5b04-bf10-4b92-9a61-e6bbf97a02ff", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e96c06ee-ae07-4c1b-8493-f78d4ada6c9a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "873737", + "orderNumber" : "45489", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "9214", + "referencedStandard" : "ASME", + "referencedStandardID" : "8359", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46515,22 +46239,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -46545,13 +46269,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-523227635506203515129330", + "value" : "NO-688886052161401712154236", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46562,7 +46286,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -46574,78 +46298,76 @@ "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", "partTypeInformation" : { "ownerPartId" : "12093297-03", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part front", "partClassification" : [ { "value" : "Axle part front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:69d9892a-3cf7-4ce8-8fcb-6ab7fea6594a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:19f8d9be-d313-4198-b1a3-e23746fd44e0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "480761", + "orderNumber" : "672519", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "4751", + "referencedStandard" : "IS", + "referencedStandardID" : "6415", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46654,10 +46376,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -46677,7 +46399,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -46686,13 +46408,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-518500285938140196776423", + "value" : "NO-283792124536385275336832", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46703,7 +46425,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -46715,78 +46437,76 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { "value" : "Axle part rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d3337d5a-8a88-4671-95bf-ca69f3c19473", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6789957f-f8d1-4d4a-a254-a1d4cfcabc82", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "143358", + "orderNumber" : "37259", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "1168", + "referencedStandard" : "EN", + "referencedStandardID" : "1976", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46797,8 +46517,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -46808,7 +46528,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -46818,7 +46538,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -46827,13 +46547,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-130941702964351461890844", + "value" : "NO-508556332461303289237835", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46844,7 +46564,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -46856,68 +46576,66 @@ "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", "partTypeInformation" : { "ownerPartId" : "00871379-44", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Chassis", "partClassification" : [ { "value" : "Chassis", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3134434-3c3d-4869-af45-c9f7dc285ecc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6bdf64aa-3078-4ed0-b17f-2ea236faca9b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "37456", + "orderNumber" : "399718", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -46927,7 +46645,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "3981", + "referencedStandardID" : "3122", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -46936,30 +46654,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -46968,13 +46686,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-280503950043440030561882", + "value" : "NO-434707457533005899553424", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -46985,7 +46703,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -46997,78 +46715,76 @@ "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", "partTypeInformation" : { "ownerPartId" : "08901347-87", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Rims", "partClassification" : [ { "value" : "Rims", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9d4cdd6a-adae-4f14-989f-40291407fe17", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2cdd4ea0-8ed4-4df4-9b38-683646b175dc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "333033", + "orderNumber" : "180047", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 7 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9489", + "referencedStandard" : "DIN", + "referencedStandardID" : "9236", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47077,30 +46793,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -47109,13 +46825,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-658219514540661622362738", + "value" : "NO-883323395134521591790236", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -47126,7 +46842,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -47138,53 +46854,51 @@ "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", "partTypeInformation" : { "ownerPartId" : "45863316-60", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tires", "partClassification" : [ { "value" : "Tires", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b261220-9e1e-41cc-bf65-e3effc7a8854", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f80f4c6f-fd70-44fa-9d72-00e218f77c13", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 40, + "recycledContent" : 39, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -47194,7 +46908,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 18, + "recycledContent" : 16, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -47204,7 +46918,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 53, + "recycledContent" : 60, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -47215,32 +46929,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "childItems" : [ { - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -47248,35 +46962,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "46370", + "orderNumber" : "809141", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2419", + "referencedStandard" : "DIN", + "referencedStandardID" : "7597", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47287,12 +47001,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -47302,7 +47016,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -47323,7 +47037,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-851136035392705186021761", + "value" : "NO-668588073256148815627504", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -47340,7 +47054,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -47352,29 +47066,29 @@ "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "assetId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:de5b5e6a-cf86-48b9-aa15-0f054f002c18", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:18d3f28c-eed4-44dc-baea-7e14319131af", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "childassetId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -47383,17 +47097,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:774fe44f-2cc3-46fd-b484-1731623d80af", + "ownerItemId" : "urn:uuid:5ccdb51a-47dd-47d7-b421-64dc9540278b", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "childassetId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -47402,17 +47116,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:eb4873b6-5fff-4dc8-9ea6-99ff6ae31368", + "ownerItemId" : "urn:uuid:fc2fe420-f38e-4681-9370-a413ccd06699", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "childassetId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -47425,24 +47139,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -47484,10 +47180,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", "identification" : { "localIdentifiers" : [ { - "value" : "NO-851136035392705186021761", + "value" : "NO-668588073256148815627504", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -47553,22 +47249,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -47576,7 +47288,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 64, + "recycledContent" : 60, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -47586,7 +47298,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 46, + "recycledContent" : 55, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -47596,35 +47308,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "800329", + "orderNumber" : "518408", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7680", + "referencedStandard" : "IS", + "referencedStandardID" : "2049", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47633,30 +47345,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -47664,7 +47376,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "assetId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -47681,27 +47393,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "partTypeInformation" : { - "manufacturerPartId" : "GP-33", + "manufacturerPartId" : "CI-20", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -47711,31 +47423,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5896d7f-247b-4151-8b58-7e431d856d0b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e8d6a2f5-54dc-4804-ad2e-5e2fa831427b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "childItems" : [ { - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -47743,35 +47453,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "54014", + "orderNumber" : "446136", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "9905", + "referencedStandard" : "ISO", + "referencedStandardID" : "9255", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47780,7 +47490,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 @@ -47793,17 +47503,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -47815,10 +47525,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "10955Z5-05", + "value" : "16197V4-00", "key" : "manufacturerPartId" }, { - "value" : "NO-314977894611835991781438", + "value" : "NO-852975893046307291892542", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -47829,10 +47539,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "partTypeInformation" : { - "manufacturerPartId" : "10955Z5-05", - "customerPartId" : "10955Z5-05", + "manufacturerPartId" : "16197V4-00", + "customerPartId" : "16197V4-00", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -47844,7 +47554,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "assetId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -47853,28 +47563,28 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d1581541-ec5c-46d3-b00c-e0496313a615", + "ownerItemId" : "urn:uuid:eecc1109-f7a8-48fd-a079-efd0527041be", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "childassetId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", "partTypeInformation" : { - "ownerPartId" : "10955Z5-05", + "ownerPartId" : "16197V4-00", "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Sensor", @@ -47885,22 +47595,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -47908,7 +47616,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 57, + "recycledContent" : 21, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -47918,7 +47626,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 14, + "recycledContent" : 11, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -47928,35 +47636,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "79565", + "orderNumber" : "835948", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5884", + "referencedStandard" : "JASO", + "referencedStandardID" : "3042", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -47972,23 +47680,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -47996,7 +47704,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "assetId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -48013,9 +47721,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "partTypeInformation" : { - "manufacturerPartId" : "RF-05", + "manufacturerPartId" : "MJ-27", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48025,12 +47733,12 @@ }, "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "05", @@ -48043,26 +47751,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b72d066-4196-4b39-9260-34a00a7e5e88", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8b2e73f0-99af-4356-b9ed-df817f625f80", + "parentItems" : [ { + "catenaXId" : "urn:uuid:54d44a03-4b09-4871-85a8-8015d10aa192", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1c726a5d-b658-45c1-95b3-8a35faf13dd3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48077,35 +47783,35 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "562585", + "orderNumber" : "377572", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "3646", + "referencedStandard" : "GB", + "referencedStandardID" : "9331", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48114,30 +47820,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -48145,7 +47851,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "assetId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -48162,9 +47868,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "partTypeInformation" : { - "manufacturerPartId" : "VH-77", + "manufacturerPartId" : "SS-55", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48174,12 +47880,12 @@ }, "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "02", @@ -48192,28 +47898,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:43dd8db7-df3e-4506-8e67-b297d4e17bd6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:61f951ef-6a05-4420-8555-8ed1557db0e1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:12169e60-fdbf-4c75-a9a3-a374e1230da1", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:efc0499b-0d5a-4a22-8223-af272c0f01a2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 9, + "recycledContent" : 7, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -48224,32 +47928,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "childItems" : [ { - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -48257,35 +47961,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "341632", + "orderNumber" : "240363", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "8806", + "referencedStandard" : "ISO", + "referencedStandardID" : "9754", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48294,30 +47998,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -48329,10 +48033,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "63085P2-81", + "value" : "77085T0-51", "key" : "manufacturerPartId" }, { - "value" : "NO-751896380643428446985611", + "value" : "NO-454563464853769874329904", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -48343,10 +48047,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "partTypeInformation" : { - "manufacturerPartId" : "63085P2-81", - "customerPartId" : "63085P2-81", + "manufacturerPartId" : "77085T0-51", + "customerPartId" : "77085T0-51", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48355,10 +48059,10 @@ "nameAtManufacturer" : "ECU", "nameAtCustomer" : "ECU" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "assetId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -48367,17 +48071,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3ea90642-dabf-4a50-8b17-550b0e87784e", + "ownerItemId" : "urn:uuid:a4fe0013-3964-403d-872c-5b7587d599cc", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "childassetId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -48386,17 +48090,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:72e52556-29cd-426b-8e67-b7d2bf1ef02f", + "ownerItemId" : "urn:uuid:10132788-38fa-4591-8869-075f53039bd3", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "childassetId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -48405,29 +48109,29 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:28638f99-1095-4df2-8353-6635c917b50b", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ba929331-1840-4e53-9e75-9c39b2dcdcc8", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "childassetId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", "partTypeInformation" : { - "ownerPartId" : "63085P2-81", - "partVersion" : "02", + "ownerPartId" : "77085T0-51", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "ECU", "partClassification" : [ { @@ -48437,22 +48141,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48460,7 +48162,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 22, + "recycledContent" : 37, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -48470,7 +48172,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 33, + "recycledContent" : 72, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -48480,35 +48182,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "947897", + "orderNumber" : "308040", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "3742", + "referencedStandard" : "AISI", + "referencedStandardID" : "7044", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48520,17 +48222,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -48540,7 +48242,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -48548,7 +48250,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "assetId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -48565,9 +48267,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "partTypeInformation" : { - "manufacturerPartId" : "SW-62", + "manufacturerPartId" : "XN-87", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48577,12 +48279,12 @@ }, "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "02", @@ -48595,31 +48297,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a15db7ad-c810-435d-b2e3-38bcf3b116d7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:38bfd27e-51bb-4691-8517-c3bd077733ac", + "parentItems" : [ { + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "childItems" : [ { - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -48627,35 +48327,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "561100", + "orderNumber" : "254886", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 26 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2063", + "referencedStandard" : "GB", + "referencedStandardID" : "2351", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48667,27 +48367,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -48699,10 +48399,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "99019M6-53", + "value" : "85033D1-98", "key" : "manufacturerPartId" }, { - "value" : "NO-751568112188359093289552", + "value" : "NO-864887680955990068635173", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -48713,10 +48413,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "partTypeInformation" : { - "manufacturerPartId" : "99019M6-53", - "customerPartId" : "99019M6-53", + "manufacturerPartId" : "85033D1-98", + "customerPartId" : "85033D1-98", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -48728,37 +48428,37 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "assetId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e1428cda-bedb-4e46-9b7d-7fb10f7963ed", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:1ccfe951-6300-41a8-95ba-d009ad4b22ba", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "childassetId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", "partTypeInformation" : { - "ownerPartId" : "99019M6-53", + "ownerPartId" : "85033D1-98", "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Sensor", @@ -48769,22 +48469,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", + "parentItems" : [ { + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48792,7 +48490,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 12, + "recycledContent" : 74, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -48802,7 +48500,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 51, + "recycledContent" : 55, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -48812,35 +48510,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "513100", + "orderNumber" : "24109", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 6 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "5299", + "referencedStandard" : "DIN", + "referencedStandardID" : "8717", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -48849,30 +48547,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -48880,7 +48578,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "assetId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -48897,27 +48595,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "partTypeInformation" : { - "manufacturerPartId" : "QP-25", + "manufacturerPartId" : "FB-82", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -48927,22 +48625,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3db9c9a1-3f2f-49f7-9f91-c001c57686c7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8d35d300-18b9-48c8-a7fb-6cf400f6dd11", + "parentItems" : [ { + "catenaXId" : "urn:uuid:979e87c6-8d01-431e-8a34-829ab811b0ef", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0f1fd1f7-be35-4caf-a767-6da372c9b437", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -48950,7 +48646,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 64, + "recycledContent" : 73, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -48960,7 +48656,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 34, + "recycledContent" : 57, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -48970,35 +48666,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "760174", + "orderNumber" : "637540", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6138", + "referencedStandard" : "JIS", + "referencedStandardID" : "2142", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -49007,30 +48703,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -49042,24 +48738,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "93605D2-91", + "value" : "70156B3-03", "key" : "manufacturerPartId" }, { - "value" : "NO-871580055866821435813562", + "value" : "NO-624371046700086263696291", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "partTypeInformation" : { - "manufacturerPartId" : "93605D2-91", - "customerPartId" : "93605D2-91", + "manufacturerPartId" : "70156B3-03", + "customerPartId" : "70156B3-03", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -49068,22 +48764,22 @@ "nameAtManufacturer" : "Engineering Plastics", "nameAtCustomer" : "Engineering Plastics" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "assetId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", "partTypeInformation" : { - "ownerPartId" : "93605D2-91", - "partVersion" : "02", + "ownerPartId" : "70156B3-03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Engineering Plastics", "partClassification" : [ { @@ -49093,35 +48789,97 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fc187ac3-0f51-4c7c-bb95-d62cded9af28", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:43450b91-3895-4c15-8f85-a614b68678cc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:74d29b3f-7f2f-49b7-b7ce-5f5e6d05ff45", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:4fde9e7a-7e84-4052-ad1f-8c6092d6ed9d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "childItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-744309140234558939999675", + "value" : "NO-703935166323445267418607", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -49138,7 +48896,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -49150,7 +48908,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -49189,7 +48947,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-744309140234558939999675", + "oeNumber" : "NO-703935166323445267418607", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -49202,121 +48960,121 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:acd7e48c-374e-45af-a539-f0bd4d1c03e4", + "ownerItemId" : "urn:uuid:63e8676f-e70b-4813-b5f1-99e57f3caa86", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "childassetId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:25ff450f-5fae-44a0-a8a2-64ad5efc2ad0", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:30faf4ab-49b6-4328-85c7-36437b96e46f", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "childassetId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:efad6b8b-9580-4ba2-8222-2722e1875e4a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:b149e30e-0ec2-4368-8113-e94be6c9ef5e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "childassetId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1d81e302-6736-4088-af62-1173445061f4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:27c7ede9-9d85-4d8c-a022-3289e2a9caa3", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "childassetId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:decc911a-35dc-40c6-8f49-5be7acee6908", + "ownerItemId" : "urn:uuid:bd19b72f-50de-4b18-afb4-beba75660a70", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "childassetId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4bf2044-4504-4295-8645-3184b366cea4", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:b1426bcb-1924-447a-bf8c-1b988b6bd23f", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "childassetId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -49348,39 +49106,39 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2023-01-18", - "version" : 2, - "status" : "Invalid" + "issueDate" : "2023-07-29", + "version" : 1.9, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1346.0496, - "width" : 1346, - "length" : 2306, - "weight" : 412, - "height" : 283 + "diameter" : 1179.0689, + "width" : 1179, + "length" : 2027, + "weight" : 624, + "height" : 311 }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2022-01-28", + "placedOnMarket" : "2023-01-15", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-744309140234558939999675", + "value" : "NO-703935166323445267418607", "key" : "PartInstanceID" } ], - "gtin" : " 71842155", + "gtin" : " 84717430", "additionalCode" : [ { "name" : "TARIC", - "value" : "444770484" + "value" : "501668603" } ] }, "sources" : { @@ -49402,7 +49160,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -49431,7 +49189,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-01-16", + "date" : "2023-12-01", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -49447,9 +49205,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.8624 ] + "left" : [ 9.6328 ] }, - "id" : "JW3524" + "id" : "XS2300" } ] }, "additionalData" : [ { @@ -49475,9 +49233,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Graphite" } ], - "critical" : [ "Lithium" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -49487,39 +49245,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 119 + "carbonContentTotal" : 123 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AZQP" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1757d01f-7b44-4e45-a2b5-0dc0d05f770c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AZQP:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 54, + "recycledContent" : 31, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -49529,7 +49288,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 20, + "recycledContent" : 81, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -49539,7 +49298,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 82, + "recycledContent" : 88, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -49549,97 +49308,33 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "childItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "667967", + "orderNumber" : "142534", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "6313", + "referencedStandard" : "AS", + "referencedStandardID" : "9707", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -49651,51 +49346,33 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -49921,7 +49598,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-744309140234558939999675", + "batteryIDDMCCode" : "NO-703935166323445267418607", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -49940,6 +49617,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5c4c441f-06b8-488f-acaf-5cfb5322c350", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AZQP" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -49955,7 +49647,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 62, + "recycledContent" : 83, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -49965,7 +49657,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 6, + "recycledContent" : 72, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -49975,7 +49667,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 12, + "recycledContent" : 88, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -49986,112 +49678,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -50099,10 +49791,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "880907", + "orderNumber" : "706396", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -50111,23 +49803,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "8683", + "referencedStandard" : "DIN", + "referencedStandardID" : "1474", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -50136,10 +49828,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -50149,17 +49841,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -50168,13 +49860,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-599349389132825299815680", + "value" : "NO-149034940347629807974954", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -50185,7 +49877,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -50200,237 +49892,219 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:25af164a-e6f7-480e-b492-651b7da1d222", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:a4710828-f79b-4779-b3e4-55da9852655f", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:85df416e-5cbc-4b72-ab98-7b3a0f597525", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ad3575ce-3edb-4778-9695-bca25a6c2a6f", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "childassetId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:babcff1f-507f-463e-be9e-94e55c0c64e9", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ad797bce-46e0-4e41-b765-9d984ee92ce4", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "childassetId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8b3f6d58-bc5a-4e0f-b2ec-3578fe6d38e1", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:df152c91-facf-4000-b3e9-85c0994838f4", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "childassetId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:73e143b7-5308-4264-b331-120cd9705213", + "ownerItemId" : "urn:uuid:f961dcb7-3f2a-4892-be7e-70db1b89e0c3", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "childassetId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8ba0f6bd-8659-4a45-8e0b-97479a0509bd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:872bf9b3-c87d-4bd5-8905-d967e0eb821f", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "childassetId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dbd8f06d-e686-4986-932a-6a12c955e134", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:e878b6ab-297a-411d-afb0-f89afddb24c2", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "childassetId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e6e5ea84-808c-43f6-8c51-b5ae7ce222d7", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:dcdc063b-b424-40cd-9297-170375493a51", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "childassetId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a5494186-1b4a-49e5-a4d4-2c85773071e4", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:f8d19343-a0af-4f83-9fec-5f33cd21badb", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "childassetId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0ec3fa8d-9e39-4d7f-8c51-1a2ae91bf453", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:487b6747-cf52-457d-8ddc-0b4083ae4dea", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "childassetId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a8073dee-f6d6-44e1-8772-5368a96a1b08", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:6b7baf3e-b7e8-4a2d-bea6-32588c626467", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "childassetId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -50656,7 +50330,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-599349389132825299815680", + "batteryIDDMCCode" : "NO-149034940347629807974954", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -50695,16 +50369,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2021-12-29", - "version" : 2.8, - "status" : "Approved" + "issueDate" : "2023-06-24", + "version" : 2, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6884, + "diameter" : 229.6569, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -50712,22 +50386,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2021-12-20", + "placedOnMarket" : "2022-06-11", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-599349389132825299815680", + "value" : "NO-149034940347629807974954", "key" : "PartInstanceID" } ], - "gtin" : " 78507355", + "gtin" : " 20235525", "additionalCode" : [ { "name" : "TARIC", - "value" : "569550313" + "value" : "910228367" } ] }, "sources" : { @@ -50749,7 +50423,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -50778,12 +50452,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-04-12", + "date" : "2023-07-17", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -50794,9 +50468,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 4.4507 ] + "left" : [ 2.3521 ] }, - "id" : "EM9757" + "id" : "ND1398" } ] }, "additionalData" : [ { @@ -50819,12 +50493,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Sealant" + "name" : "Nickel" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Manganese" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -50834,15 +50508,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 105 + "carbonContentTotal" : 103 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -50854,31 +50528,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -50897,7 +50587,7 @@ "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -50907,35 +50597,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "887584", + "orderNumber" : "412625", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "3164", + "referencedStandard" : "IS", + "referencedStandardID" : "9439", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -50946,18 +50636,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -50967,7 +50657,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -50982,7 +50672,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-276052741206550431565449", + "value" : "NO-153249685479382694162369", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -50993,7 +50683,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -51005,10 +50695,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", + "assetId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -51017,17 +50707,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ec4ede01-6089-4547-8675-4251e3162d78", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6fccfc68-e631-46d3-b169-6d5fac474345", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -51040,24 +50730,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -51283,7 +50955,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-276052741206550431565449", + "batteryIDDMCCode" : "NO-153249685479382694162369", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -51302,31 +50974,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:01822dbe-8eae-49bf-a0e9-76a04041ccbf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ce0d100-6039-47a3-a997-c2ebd76593c8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -51341,11 +51029,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-26", + "currentStateOfHealthTimestamp" : "2017-03-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -51355,35 +51043,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "137895", + "orderNumber" : "664395", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "1859", + "referencedStandardID" : "9745", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -51392,14 +51080,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -51430,7 +51118,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-613745749330170700793987", + "value" : "NO-100348889861720225961543", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -51441,7 +51129,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -51453,10 +51141,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", + "assetId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -51465,17 +51153,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:021be7ca-fa9b-4b99-a7f5-eb9bb87b3faf", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:364c505b-0436-4615-92d0-22e8b71ff3ce", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -51488,24 +51176,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -51731,7 +51401,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-613745749330170700793987", + "batteryIDDMCCode" : "NO-100348889861720225961543", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -51750,31 +51420,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:205f06b1-5592-40d6-941a-9d9d45a96ba3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b77656fe-0ac4-41f0-a89c-9ff151f5f4c9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -51789,11 +51475,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-11", + "currentStateOfHealthTimestamp" : "2020-04-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -51803,35 +51489,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "33224", + "orderNumber" : "707878", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7536", + "referencedStandard" : "GB", + "referencedStandardID" : "7205", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -51842,28 +51528,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -51878,7 +51564,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-816675614874955054622587", + "value" : "NO-923706772363859834126509", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -51889,7 +51575,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -51901,10 +51587,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", + "assetId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -51913,17 +51599,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4d059a49-57f3-4fe4-ab32-ba03cddbf666", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:bf7fe81c-7dbb-4db4-9936-b5abca80e787", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -51936,24 +51622,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -52179,7 +51847,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-816675614874955054622587", + "batteryIDDMCCode" : "NO-923706772363859834126509", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -52198,31 +51866,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d539866-9f09-408d-b2a1-2c8d85f88e78", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e584b3d9-a2e0-4226-8ff6-7f8a1c294ad5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -52237,11 +51921,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-30", + "currentStateOfHealthTimestamp" : "2016-07-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -52251,35 +51935,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "264313", + "orderNumber" : "674666", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1702", + "referencedStandard" : "ISO", + "referencedStandardID" : "1897", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -52291,27 +51975,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -52326,7 +52010,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-583571011792716331126348", + "value" : "NO-174638927682487327941825", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -52337,7 +52021,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -52352,7 +52036,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", + "assetId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -52361,17 +52045,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a336dc1a-f087-492a-96d2-80e64ec70178", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:db0ddb7f-5ad6-4247-a294-7cfaac0f3d8e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -52384,24 +52068,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -52627,7 +52293,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-583571011792716331126348", + "batteryIDDMCCode" : "NO-174638927682487327941825", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -52646,31 +52312,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f4e3e1b5-df6b-45e1-8b1d-81350d9fca3f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:34d4f25e-ac98-4147-85ee-7ef4b6f9261d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -52685,11 +52367,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-20", + "currentStateOfHealthTimestamp" : "2014-08-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -52699,10 +52381,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "173754", + "orderNumber" : "150240", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -52715,9 +52397,9 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -52726,8 +52408,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "4147", + "referencedStandard" : "GB", + "referencedStandardID" : "7934", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -52736,10 +52418,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -52749,17 +52431,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -52774,7 +52456,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-701698086749428343178985", + "value" : "NO-470288501287804086872859", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -52785,7 +52467,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -52797,10 +52479,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", + "assetId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -52809,17 +52491,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3c5c8509-adeb-4a2a-91ac-7456c953bda7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d9c93410-4de0-42af-987c-2a832afaa0dd", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -52832,24 +52514,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -53075,7 +52739,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-701698086749428343178985", + "batteryIDDMCCode" : "NO-470288501287804086872859", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -53094,31 +52758,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c87831c1-da22-4dbf-9e1d-38e1efda5902", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:137ca063-9b3e-4354-a277-1f81e75c96e7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -53133,11 +52813,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-08", + "currentStateOfHealthTimestamp" : "2018-12-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -53147,35 +52827,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "859315", + "orderNumber" : "870027", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9360", + "referencedStandard" : "IS", + "referencedStandardID" : "7820", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -53184,30 +52864,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -53222,7 +52902,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-629544766376868286560031", + "value" : "NO-967123189742391859765807", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -53233,7 +52913,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -53245,10 +52925,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", + "assetId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -53257,17 +52937,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c14cbd74-248c-4c05-807c-e14766317c7f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:e87d9e09-fe5b-4ef5-b023-c62fa9f87030", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -53280,24 +52960,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -53523,7 +53185,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-629544766376868286560031", + "batteryIDDMCCode" : "NO-967123189742391859765807", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -53542,31 +53204,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e98a6d9f-3018-4538-ade6-eac003586002", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:959cc9ce-91db-4f08-94d2-0d95d93788a5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -53581,11 +53259,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-31", + "currentStateOfHealthTimestamp" : "2020-12-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -53595,35 +53273,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "421680", + "orderNumber" : "410937", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "7936", + "referencedStandard" : "IS", + "referencedStandardID" : "8419", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -53632,10 +53310,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -53649,13 +53327,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -53670,7 +53348,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-574718760399170263078806", + "value" : "NO-597268819056305633390104", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -53681,7 +53359,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -53693,10 +53371,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", + "assetId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -53705,17 +53383,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b362a145-eb11-42df-837f-b8450ab6d65a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:54f5cc5d-5e37-42c9-8d95-d946955d684d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -53728,24 +53406,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -53971,7 +53631,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-574718760399170263078806", + "batteryIDDMCCode" : "NO-597268819056305633390104", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -53990,31 +53650,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d32b7314-16d3-4ffe-bb11-29652fb0939d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a0b2db62-6de7-4612-9f79-5754e864e9ae", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -54029,11 +53705,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-10", + "currentStateOfHealthTimestamp" : "2023-04-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54043,35 +53719,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "574615", + "orderNumber" : "827705", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4964", + "referencedStandard" : "EN", + "referencedStandardID" : "1964", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -54080,20 +53756,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -54103,7 +53779,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -54118,7 +53794,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-585548541298586466303843", + "value" : "NO-155286588720399385866335", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -54129,7 +53805,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -54141,10 +53817,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", + "assetId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -54153,17 +53829,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:761e02f3-5258-431e-9a3d-c6e1bf2ed993", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:9ccf8d24-eb4b-4c4f-b5d2-cd9c098328a6", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -54176,24 +53852,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -54419,7 +54077,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-585548541298586466303843", + "batteryIDDMCCode" : "NO-155286588720399385866335", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -54438,31 +54096,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8135e4d8-2055-4574-917c-6042adc71dbe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:270ce26e-c616-480f-b7c5-c26249f5fc81", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -54477,11 +54151,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-11-08", + "currentStateOfHealthTimestamp" : "2017-06-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54491,35 +54165,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "363231", + "orderNumber" : "803007", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7876", + "referencedStandard" : "AISI", + "referencedStandardID" : "1609", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -54528,30 +54202,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -54566,7 +54240,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-849571409038311009141692", + "value" : "NO-631809235645814770651588", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -54577,7 +54251,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -54589,10 +54263,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", + "assetId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -54601,17 +54275,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:955f4773-e317-4a2c-bfdd-71681c43d167", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:01d16e88-e2ae-4262-8109-afb8aad717e4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -54624,24 +54298,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -54867,7 +54523,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-849571409038311009141692", + "batteryIDDMCCode" : "NO-631809235645814770651588", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -54886,31 +54542,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:390b9452-66f6-4ad6-af6e-c6ca8cb3a0e7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:54f42d2a-aa31-4463-926c-1377d1b5b15c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -54925,11 +54597,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-23", + "currentStateOfHealthTimestamp" : "2015-09-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -54939,10 +54611,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "542029", + "orderNumber" : "271820", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -54957,17 +54629,17 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "3531", + "referencedStandard" : "JASO", + "referencedStandardID" : "6146", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -54976,14 +54648,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -54993,7 +54665,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -55014,7 +54686,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-046489068699513613983142", + "value" : "NO-953401953268255862600789", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -55025,7 +54697,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -55037,10 +54709,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", + "assetId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -55049,17 +54721,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d17dfa57-615c-4d7a-81f2-0389277e4e3e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a69b90f6-fb88-4441-a86f-b78883824641", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -55072,24 +54744,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -55315,7 +54969,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-046489068699513613983142", + "batteryIDDMCCode" : "NO-953401953268255862600789", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -55334,28 +54988,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5b3ce3a9-4c03-415e-ab55-a5f6df8f15c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e0484552-e862-47ee-a0ae-3f1382c96c6d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:123d58d5-6b1d-4268-ad80-409f83744124", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5577b78a-ae01-4302-a91d-bc0eebf59785", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 61, + "recycledContent" : 2, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -55365,7 +55035,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 9, + "recycledContent" : 40, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -55375,7 +55045,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 84, + "recycledContent" : 85, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -55386,112 +55056,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -55499,25 +55169,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "548787", + "orderNumber" : "642625", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -55526,8 +55196,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "8877", + "referencedStandard" : "IS", + "referencedStandardID" : "4566", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -55536,30 +55206,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -55568,13 +55238,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-343421984914134407537068", + "value" : "NO-465303211980397443044303", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -55585,7 +55255,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -55597,240 +55267,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a83e094e-d624-41a1-9d4f-5ce815d36141", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:792d6d22-da4b-4097-92c6-2295dd6b3aa0", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e437151e-57a1-42b5-911c-6a0a4fd1d506", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:1e257ef9-6cb2-44cb-a5a0-3554e419d507", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "childassetId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:288c15d2-830e-4501-93c9-ec2389f6159a", + "ownerItemId" : "urn:uuid:46d9eda0-b820-4ebd-a569-08faaceb1d14", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "childassetId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d657e92b-31ac-4198-b49a-1b5b89ac067a", + "ownerItemId" : "urn:uuid:6fbda816-ae45-442f-950b-0f5623d77c3f", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "childassetId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5bf9db4b-a700-4937-9cbf-de04ec91289e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1114b1dc-3d2e-4e58-b46f-c464819d0057", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "childassetId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7bf2c1ac-ccc5-4b39-845f-8fc15f37e4c9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9ca40b6f-2e75-4c93-8ad3-db61c3ce7c89", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "childassetId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:582a4814-1b4f-4ab7-97f8-3583e6428b04", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5b5caa11-de30-49b3-8533-8eaf17fc09b1", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "childassetId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:69197eeb-b681-400b-a67b-446ff52968e1", + "ownerItemId" : "urn:uuid:e2f57407-b51c-48d0-85f1-29aa417e6838", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "childassetId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2cdc3633-9278-46f1-a1b4-6db81ddff90c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a1f9e760-678c-4bad-94e4-500011cf5033", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "childassetId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1c2d1acb-79c5-450b-b0e7-eb0b51da379e", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:c84cfeae-a805-4a28-8c39-fca4394b448e", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "childassetId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4e462559-e767-4cac-aa51-7c3e6dbbcdee", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8e5a01a8-ed1e-4e02-b401-f5bd9ae4b944", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "childassetId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -56056,7 +55708,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-343421984914134407537068", + "batteryIDDMCCode" : "NO-465303211980397443044303", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -56095,16 +55747,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2022-09-29", - "version" : 1.6, - "status" : "Invalid" + "issueDate" : "2024-03-03", + "version" : 1.7, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6201, + "diameter" : 229.6777, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -56112,22 +55764,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2022-05-06", + "placedOnMarket" : "2024-01-21", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-343421984914134407537068", + "value" : "NO-465303211980397443044303", "key" : "PartInstanceID" } ], - "gtin" : " 23331813", + "gtin" : " 47564459", "additionalCode" : [ { "name" : "TARIC", - "value" : "931203007" + "value" : "445975845" } ] }, "sources" : { @@ -56149,7 +55801,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -56178,12 +55830,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-10-07", + "date" : "2024-03-14", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -56194,9 +55846,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.2157 ] + "left" : [ 1.4739 ] }, - "id" : "PB7707" + "id" : "KY1148" } ] }, "additionalData" : [ { @@ -56222,9 +55874,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Others" + "name" : "Copper" } ], - "critical" : [ "Lithium" ], + "critical" : [ "Nickel" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -56234,15 +55886,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 111 + "carbonContentTotal" : 119 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -56254,31 +55906,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -56293,11 +55961,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-26", + "currentStateOfHealthTimestamp" : "2020-03-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -56307,35 +55975,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "159823", + "orderNumber" : "873144", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ISO", - "referencedStandardID" : "6698", + "referencedStandardID" : "6673", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -56347,21 +56015,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -56382,7 +56050,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-266414324653556185736448", + "value" : "NO-059536600363127353614408", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -56393,7 +56061,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -56405,10 +56073,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", + "assetId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -56417,17 +56085,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ab50cdb0-c239-4648-b9ed-a7dd42e72220", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:f9121583-cbe8-44bf-9f7a-8cb82c6a34f9", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -56440,24 +56108,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -56683,7 +56333,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-266414324653556185736448", + "batteryIDDMCCode" : "NO-059536600363127353614408", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -56702,31 +56352,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09cb6b5c-4013-45de-a94b-a112af6da070", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f87422e4-ae0b-4a80-9fe6-ca414b6cde59", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -56741,11 +56407,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-08", + "currentStateOfHealthTimestamp" : "2014-12-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -56755,25 +56421,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "262542", + "orderNumber" : "359304", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -56782,8 +56448,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "6942", + "referencedStandard" : "JASO", + "referencedStandardID" : "7130", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -56794,28 +56460,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -56830,7 +56496,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-439531001401998592561978", + "value" : "NO-973606156008960156293152", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -56841,7 +56507,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -56856,7 +56522,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", + "assetId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -56865,17 +56531,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3ec0a5de-e362-4181-b11c-717f7855192f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f5b44d95-a47d-4f29-87d0-13bd605f2190", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -56888,24 +56554,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -57131,7 +56779,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-439531001401998592561978", + "batteryIDDMCCode" : "NO-973606156008960156293152", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -57150,31 +56798,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:35318daa-e4f6-4253-b3c2-1108c0398e0b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e45b0ad5-7094-4b47-8f88-3bb4cea0e50a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -57189,11 +56853,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-10-21", + "currentStateOfHealthTimestamp" : "2014-06-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -57203,35 +56867,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "986688", + "orderNumber" : "265025", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4675", + "referencedStandard" : "JASO", + "referencedStandardID" : "7441", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -57240,20 +56904,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -57263,7 +56927,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -57278,7 +56942,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-021808497008475276207658", + "value" : "NO-620994564712485756656214", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -57289,7 +56953,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -57304,7 +56968,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", + "assetId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -57313,17 +56977,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b74504dc-5f15-4cea-ba28-80babdefd216", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9c58c718-79a2-4423-b5f8-eb5b7ee13c7b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -57336,24 +57000,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -57579,7 +57225,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-021808497008475276207658", + "batteryIDDMCCode" : "NO-620994564712485756656214", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -57598,31 +57244,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:82654b2d-881d-49cd-9a2b-9f9564106f2b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6020184-ab03-4944-a4b6-5a582346425f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -57637,11 +57299,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-20", + "currentStateOfHealthTimestamp" : "2023-12-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -57651,35 +57313,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "761723", + "orderNumber" : "355448", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2393", + "referencedStandard" : "JIS", + "referencedStandardID" : "4408", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -57691,7 +57353,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -57701,17 +57363,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -57726,7 +57388,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-883135781243388996380832", + "value" : "NO-898160141651811826325581", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -57737,7 +57399,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -57749,10 +57411,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", + "assetId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -57761,17 +57423,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:155dfe14-4d27-41f2-a181-6a275eefdc8e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:19a56653-cded-4e44-9064-5721a277c2fe", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -57784,24 +57446,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -58027,7 +57671,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-883135781243388996380832", + "batteryIDDMCCode" : "NO-898160141651811826325581", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -58046,31 +57690,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c638cd8b-63a6-4ba9-af8b-d4fa2cd1d3aa", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f162fbf2-2151-45af-a7a9-9a0e59eb7e66", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -58085,11 +57745,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-01", + "currentStateOfHealthTimestamp" : "2018-10-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -58099,35 +57759,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "517072", + "orderNumber" : "152740", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "3439", + "referencedStandard" : "GB", + "referencedStandardID" : "3674", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -58138,12 +57798,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -58153,13 +57813,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -58174,7 +57834,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-990836037358215841702922", + "value" : "NO-766867050383618231098812", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -58185,7 +57845,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -58197,10 +57857,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", + "assetId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -58209,17 +57869,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:51e5ce2d-51ee-4e46-b4df-f0aad1250711", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3eeaefd3-4531-4c6c-86ea-631e42523c7d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -58232,24 +57892,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -58475,7 +58117,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-990836037358215841702922", + "batteryIDDMCCode" : "NO-766867050383618231098812", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -58494,31 +58136,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa511abd-a57b-438f-b4c8-f6773858059a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3ea378be-327c-4c1c-a95a-fd11aacc6eae", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -58533,11 +58191,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-14", + "currentStateOfHealthTimestamp" : "2023-11-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -58547,35 +58205,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "860371", + "orderNumber" : "644893", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN EN", - "referencedStandardID" : "1793", + "referencedStandardID" : "1964", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -58586,8 +58244,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -58597,17 +58255,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -58622,7 +58280,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-960387226518041014742915", + "value" : "NO-100854579053767656486307", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -58633,7 +58291,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -58645,10 +58303,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", + "assetId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -58657,17 +58315,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7ada1973-6ede-41cd-9d7e-ee7210cb57ec", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:41310528-54da-4cb3-a1fe-f843d2728115", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -58680,24 +58338,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -58923,7 +58563,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-960387226518041014742915", + "batteryIDDMCCode" : "NO-100854579053767656486307", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -58942,31 +58582,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d162ba1f-2c84-464a-a907-74fda0088ed1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:742009e5-0dee-4d0f-b289-e40b574ed367", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -58981,11 +58637,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-25", + "currentStateOfHealthTimestamp" : "2023-06-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -58995,14 +58651,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "402009", + "orderNumber" : "937270", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -59011,19 +58667,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7973", + "referencedStandard" : "ISO", + "referencedStandardID" : "3420", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -59034,28 +58690,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -59070,7 +58726,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-749514118885207807523684", + "value" : "NO-929343602416229414219002", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -59081,7 +58737,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -59096,7 +58752,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", + "assetId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -59105,17 +58761,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:33d31c53-a97b-4949-96d6-27abaa572486", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:321a6133-da27-48cb-a823-deeb839fd161", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -59128,24 +58784,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -59371,7 +59009,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-749514118885207807523684", + "batteryIDDMCCode" : "NO-929343602416229414219002", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -59390,31 +59028,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bf57a551-f252-4577-9026-971b3aed6ee3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1ec6f8ef-9d17-4699-a537-95f8bcf33e0d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -59429,11 +59083,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-18", + "currentStateOfHealthTimestamp" : "2015-02-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -59443,35 +59097,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "337414", + "orderNumber" : "322958", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4420", + "referencedStandard" : "JIS", + "referencedStandardID" : "9487", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -59483,27 +59137,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -59518,7 +59172,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-291715621913372083066844", + "value" : "NO-557737221411224973606496", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -59529,7 +59183,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -59541,10 +59195,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", + "assetId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -59553,17 +59207,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b773e17f-884d-48d5-a2be-32d638aa8e60", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:9d550023-e431-42d5-97d6-62b0b1930e0b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -59576,24 +59230,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -59819,7 +59455,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-291715621913372083066844", + "batteryIDDMCCode" : "NO-557737221411224973606496", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -59838,31 +59474,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87100eae-2e26-4f3a-8387-ed3d430d4220", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bab441d1-4ee1-48dc-8cf7-dad7fc0f6707", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -59877,11 +59529,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-07", + "currentStateOfHealthTimestamp" : "2020-03-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -59891,25 +59543,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "77438", + "orderNumber" : "226595", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -59918,8 +59570,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2276", + "referencedStandard" : "IS", + "referencedStandardID" : "1222", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -59928,20 +59580,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -59951,7 +59603,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -59966,7 +59618,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-443271381888074190712314", + "value" : "NO-122491485429919175542942", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -59977,7 +59629,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -59989,10 +59641,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", + "assetId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -60001,17 +59653,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a568cea8-143f-42a7-b9f9-f8f3ec146082", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:0d78dfed-66a9-461e-8c25-cf5c94c06255", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -60024,24 +59676,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -60267,7 +59901,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-443271381888074190712314", + "batteryIDDMCCode" : "NO-122491485429919175542942", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -60286,31 +59920,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f415ef4e-dd14-40ba-a1e3-b3d42b9f52de", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b416510f-0a62-402d-8cef-294b580ca535", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -60325,11 +59975,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-31", + "currentStateOfHealthTimestamp" : "2017-12-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -60339,35 +59989,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "672157", + "orderNumber" : "831913", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "1776", + "referencedStandard" : "JIS", + "referencedStandardID" : "2395", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -60379,17 +60029,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -60399,7 +60049,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -60414,7 +60064,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-603465092925964841944939", + "value" : "NO-514722710964971857791665", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -60425,7 +60075,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -60437,10 +60087,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", + "assetId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -60449,17 +60099,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7013115d-d229-4f24-9df3-8a0fc2b4f3b4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3b809728-be72-4a14-b5b4-2580d69e3e52", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -60472,24 +60122,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -60715,7 +60347,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-603465092925964841944939", + "batteryIDDMCCode" : "NO-514722710964971857791665", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -60734,28 +60366,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:65dd7bb0-1c55-4078-9870-18e158493688", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:5e17248e-4e66-4cf8-828f-e8c762511fe6", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc0ce047-53bd-485d-bef4-8d2162f49127", + "parentItems" : [ { + "catenaXId" : "urn:uuid:9bc66cde-8dfe-4d3f-9913-b9b6f786284b", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 84, + "recycledContent" : 31, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -60765,7 +60413,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 73, + "recycledContent" : 31, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -60775,7 +60423,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 31, + "recycledContent" : 35, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -60786,112 +60434,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -60899,35 +60547,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "154592", + "orderNumber" : "502541", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "9294", + "referencedStandard" : "JIS", + "referencedStandardID" : "1562", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -60938,28 +60586,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -60968,13 +60616,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-823560382376748897634491", + "value" : "NO-240160927483664731586703", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -60985,7 +60633,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -60997,240 +60645,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2614af24-9bde-4eac-919a-7660638c5f53", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:e5b32990-d097-4c18-a899-c364ccec6241", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7f9d145b-4a6f-4d79-92ba-c12994b6b483", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:26055897-21a3-460f-bdf8-f8173274f905", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "childassetId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f9610458-0225-44b5-abb5-fec8cf099797", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:c52a0114-b979-448b-81a1-e0e85d95bb6e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "childassetId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:07c96796-3b53-4e56-a4ac-f59fa133800b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2a917956-a280-430a-9ca7-fd8b841d7938", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "childassetId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b8456285-e981-4ad9-973f-512f01487ae6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5acc3c8e-fd9f-40f0-9980-a70686ebe897", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "childassetId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f2827a52-4654-4db0-a19c-2854b1fb411b", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:ee44a799-4b5f-4499-b396-1dea942c4812", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "childassetId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6d0c58c2-76d9-4bbd-9cfb-26b6720651ad", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f090fbe5-78c3-4aa5-85ce-c4a38fb9e4c1", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "childassetId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4acc9a3d-610a-4273-af81-9cd7aec2afb2", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:73cb0f2e-c76b-4ff2-99f3-e54ec28ded5e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "childassetId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3b3a70bf-5ec7-46c0-992c-4334d756cb7a", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:742658b1-1970-445a-9c3b-85c842bc2490", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "childassetId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7af5cee7-61dc-423c-a29c-3bfa738b362d", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:810dd0d7-dea0-40a9-9aec-4b42bfe99895", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "childassetId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a5c78f5c-4008-4014-9c12-f152326ba9a4", + "ownerItemId" : "urn:uuid:e139e985-3911-4d21-8ee4-ffcbd377dfd3", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "childassetId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -61456,7 +61086,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-823560382376748897634491", + "batteryIDDMCCode" : "NO-240160927483664731586703", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -61495,16 +61125,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2021-12-07", - "version" : 2.3, - "status" : "Invalid" + "issueDate" : "2023-12-16", + "version" : 1.8, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.63989999999998, + "diameter" : 229.6825, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -61512,22 +61142,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2021-06-26", + "placedOnMarket" : "2023-10-03", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-823560382376748897634491", + "value" : "NO-240160927483664731586703", "key" : "PartInstanceID" } ], - "gtin" : " 38615101", + "gtin" : " 70127861", "additionalCode" : [ { "name" : "TARIC", - "value" : "341259269" + "value" : "131300311" } ] }, "sources" : { @@ -61549,7 +61179,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -61578,7 +61208,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-05-30", + "date" : "2023-12-21", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -61594,9 +61224,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 5.6098 ] + "left" : [ 7.005 ] }, - "id" : "LN1496" + "id" : "OI5319" } ] }, "additionalData" : [ { @@ -61619,10 +61249,10 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Others" + "name" : "Nickel" } ], "critical" : [ "Graphite" ], "carbonFootprint" : { @@ -61634,15 +61264,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 117 + "carbonContentTotal" : 102 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AXS3", "manufacturer" : { "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -61654,31 +61284,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -61693,11 +61339,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-13", + "currentStateOfHealthTimestamp" : "2017-12-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -61707,14 +61353,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "455628", + "orderNumber" : "107062", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { @@ -61723,19 +61369,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6314", + "referencedStandard" : "JIS", + "referencedStandardID" : "3857", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -61746,12 +61392,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -61761,13 +61407,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -61782,7 +61428,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-848885292462912694102251", + "value" : "NO-527345668639002464490329", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -61793,7 +61439,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -61805,10 +61451,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", + "assetId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -61817,17 +61463,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dbe5222e-e498-402f-98f2-4e45c66099a7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1fbb39ed-c153-4550-a127-7a09b5ac57cf", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -61840,24 +61486,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -62083,7 +61711,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-848885292462912694102251", + "batteryIDDMCCode" : "NO-527345668639002464490329", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -62102,31 +61730,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:556bf5da-99a8-44da-b6b7-088f2ae78ea8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d1ef33d4-aa48-40ae-9457-fe022227d38e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -62141,11 +61785,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-15", + "currentStateOfHealthTimestamp" : "2023-08-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -62155,35 +61799,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "335379", + "orderNumber" : "952929", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "IS", - "referencedStandardID" : "6384", + "referencedStandardID" : "4999", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -62192,30 +61836,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -62230,7 +61874,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-689813702415564518493945", + "value" : "NO-747371895715357584120035", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -62241,7 +61885,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -62253,10 +61897,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", + "assetId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -62265,17 +61909,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e2b5fe18-114d-4335-8886-1342d152a6bc", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d131f606-e8a6-435f-9581-f417ef958def", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -62288,24 +61932,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -62531,7 +62157,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-689813702415564518493945", + "batteryIDDMCCode" : "NO-747371895715357584120035", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -62550,31 +62176,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:64e9f93c-eaa5-49a6-80ae-8e52e4a138e1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:30a25279-3673-4a38-9941-95c8790b2123", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -62589,11 +62231,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2024-01-31", + "currentStateOfHealthTimestamp" : "2016-06-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -62603,35 +62245,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "199331", + "orderNumber" : "970024", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7004", + "referencedStandard" : "EN", + "referencedStandardID" : "1691", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -62640,20 +62282,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -62663,7 +62305,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -62678,7 +62320,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-987660837352774924045931", + "value" : "NO-880508248605583476310393", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -62689,7 +62331,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -62701,10 +62343,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", + "assetId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -62713,17 +62355,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:42569d31-653c-4edf-bcf0-9377da2501b6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:9aa3127e-1a8f-44a8-8c26-4aaec75de982", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -62736,24 +62378,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -62979,7 +62603,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-987660837352774924045931", + "batteryIDDMCCode" : "NO-880508248605583476310393", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -62998,31 +62622,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1b630f6c-659c-430a-83ea-a4537b9ed48f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:275a2f57-cebc-4c80-91c5-97acee2839cc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -63037,11 +62677,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-07", + "currentStateOfHealthTimestamp" : "2018-06-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -63051,25 +62691,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "498568", + "orderNumber" : "325839", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -63078,8 +62718,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3727", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9295", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -63091,7 +62731,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -63101,17 +62741,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -63126,7 +62766,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-654353296014446496284506", + "value" : "NO-531564517305551088266581", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -63137,7 +62777,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -63149,10 +62789,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", + "assetId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -63161,17 +62801,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9e3d6e45-10ce-4803-adfa-178aa2f28de5", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:e91c02de-4a29-4a8c-8b39-0737663fb176", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -63184,24 +62824,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -63427,7 +63049,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-654353296014446496284506", + "batteryIDDMCCode" : "NO-531564517305551088266581", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -63446,31 +63068,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c48d16d-4b49-4b2f-8fc6-12dddb18a62c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:169a1575-4d7d-4a7d-8fa1-c23125a90101", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -63485,11 +63123,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-10", + "currentStateOfHealthTimestamp" : "2022-02-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -63499,25 +63137,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "326790", + "orderNumber" : "794279", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -63526,8 +63164,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1442", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6762", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -63536,24 +63174,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -63574,7 +63212,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-588767590807225389768378", + "value" : "NO-657389294755810188273807", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -63585,7 +63223,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -63597,10 +63235,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", + "assetId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -63609,17 +63247,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5c73472b-c9b9-4767-aa9c-3997a1fd74a8", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0d9e2336-5fbf-4b0b-9904-aa492ea79873", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -63632,24 +63270,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -63875,7 +63495,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-588767590807225389768378", + "batteryIDDMCCode" : "NO-657389294755810188273807", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -63894,31 +63514,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:05c641cf-56b1-4251-b8a6-b2443d7a07a6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1fe33596-ccef-4dd0-9353-840b875d116e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -63933,11 +63569,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-04", + "currentStateOfHealthTimestamp" : "2020-01-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -63947,35 +63583,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "515853", + "orderNumber" : "692958", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1725", + "referencedStandard" : "GB", + "referencedStandardID" : "2784", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -63984,20 +63620,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -64007,7 +63643,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -64022,7 +63658,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-931418197632196969612711", + "value" : "NO-059324923880677811268903", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -64033,7 +63669,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -64045,10 +63681,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", + "assetId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -64057,17 +63693,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f77404be-d106-4185-8bf2-5ea493235bdc", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:b646c863-18f7-4f9d-b571-44795caa9c3a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -64080,24 +63716,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -64323,7 +63941,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-931418197632196969612711", + "batteryIDDMCCode" : "NO-059324923880677811268903", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -64342,31 +63960,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e748127f-cecf-432f-a24b-21dc83318cf4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c8c2c9d8-496a-418a-81c8-c892280ac9d3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -64381,11 +64015,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-22", + "currentStateOfHealthTimestamp" : "2019-07-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -64395,35 +64029,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "829859", + "orderNumber" : "963097", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "4783", + "referencedStandardID" : "8988", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -64434,12 +64068,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -64449,13 +64083,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -64470,7 +64104,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-111951972013972210420848", + "value" : "NO-472858555790076270035205", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -64481,7 +64115,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -64493,10 +64127,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", + "assetId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -64505,17 +64139,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c776232e-d7a9-4ddd-a18a-0978ef29b492", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:79758ca8-dccd-419a-8b14-85284e3d9ef5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -64528,24 +64162,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -64771,7 +64387,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-111951972013972210420848", + "batteryIDDMCCode" : "NO-472858555790076270035205", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -64790,31 +64406,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4fca20db-68e8-414b-9952-ae647b94426c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:597b6d42-3aae-48d7-b5c7-547c22b6d604", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -64829,11 +64461,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-26", + "currentStateOfHealthTimestamp" : "2015-03-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -64843,35 +64475,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "271591", + "orderNumber" : "767943", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5926", + "referencedStandard" : "AISI", + "referencedStandardID" : "9959", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -64880,10 +64512,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -64893,11 +64525,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -64918,7 +64550,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-932110494217527413805411", + "value" : "NO-297431803670890490193465", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -64929,7 +64561,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -64941,10 +64573,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", + "assetId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -64953,17 +64585,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b20d0071-e9f9-4da6-bbf6-e21cf24b62ec", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:408fbcb9-f519-4b27-9f8e-0a51ced81720", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -64976,24 +64608,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -65219,7 +64833,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-932110494217527413805411", + "batteryIDDMCCode" : "NO-297431803670890490193465", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -65238,31 +64852,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8292528d-fbe1-4b09-8d21-7ee3b1dd3a5d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b008c469-f09d-43f3-85fe-4746f65e295a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -65277,11 +64907,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-03-14", + "currentStateOfHealthTimestamp" : "2017-03-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -65291,35 +64921,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "927759", + "orderNumber" : "179910", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4113", + "referencedStandard" : "DIN", + "referencedStandardID" : "5457", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -65328,30 +64958,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -65366,7 +64996,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-925671333895560015573644", + "value" : "NO-542472084400095778418675", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -65377,7 +65007,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -65389,10 +65019,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", + "assetId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -65401,17 +65031,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f89b88d3-8060-417b-9b23-3c98acde0d62", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:96c07415-3218-4763-a75c-5f3d38429f54", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -65424,24 +65054,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -65667,7 +65279,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-925671333895560015573644", + "batteryIDDMCCode" : "NO-542472084400095778418675", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -65686,31 +65298,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b4bd79e-5117-4a9a-9a49-e38c0c63e4ff", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:81766067-8b08-41ba-b911-da6437ab2550", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -65725,11 +65353,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-12", + "currentStateOfHealthTimestamp" : "2020-11-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -65739,35 +65367,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "212566", + "orderNumber" : "479604", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9522", + "referencedStandard" : "JASO", + "referencedStandardID" : "1618", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -65779,17 +65407,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -65799,7 +65427,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -65814,7 +65442,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-942663371448425761623285", + "value" : "NO-455801323952874989628244", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -65825,7 +65453,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -65840,7 +65468,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", + "assetId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -65849,17 +65477,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bcb55f75-602d-45d9-bac5-5e64e9ab53b9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6495908d-de2d-43d4-8264-49e4acef1614", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -65872,24 +65500,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -66115,7 +65725,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-942663371448425761623285", + "batteryIDDMCCode" : "NO-455801323952874989628244", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -66134,28 +65744,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d421d0da-aa83-43e7-a017-d2ebf14a07ba", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:72e057d1-e262-45b3-b85d-862a1efa106c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8393bfab-a1c2-4887-afe7-8134f5279352", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e902fde1-35aa-4c44-95d9-e0a7f998faac", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 7, + "recycledContent" : 48, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -66165,7 +65791,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 9, + "recycledContent" : 0, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -66175,7 +65801,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 40, + "recycledContent" : 78, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -66186,112 +65812,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -66299,25 +65925,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "587599", + "orderNumber" : "113848", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -66326,8 +65952,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "6007", + "referencedStandard" : "AS", + "referencedStandardID" : "8124", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -66336,30 +65962,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -66368,13 +65994,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-862307068158749400741457", + "value" : "NO-597678879036304738525193", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -66385,7 +66011,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -66397,240 +66023,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4a76b061-0f80-4993-ab51-25bb01d5977c", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:100112fd-f007-47dd-ac5c-b8326310b2cd", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3b9d35a7-c5db-42d9-9011-9e4b982e3256", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a479c743-c37a-4def-9adc-81d7a0a4e883", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "childassetId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:04c4b249-70bc-4735-971b-b5328358945b", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:611df7c5-ff37-4885-b39a-3c9e03f0f391", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "childassetId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c84f4059-e4e7-4169-8ea8-6761d2a44eca", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:dad2601c-17bf-4032-ba32-c4d714e08cb4", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "childassetId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a7ac16d1-3042-4a8b-92e9-4ee1b3030bde", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4dc36eae-487f-4150-8369-0ff26e96ae71", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "childassetId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ddfabcb8-3785-428a-a60c-9de984a047a2", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:26da8aa8-71d1-4bd2-abea-191a1090f661", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "childassetId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4a2da884-346d-46e4-82ff-a5564f04c565", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ce7e8dd4-8ba2-4629-a2b4-c471be848612", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "childassetId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7740e6f1-8e26-4c8a-a9c0-54f60a2be416", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:615967e8-b9df-4fe9-be25-42ecbd3e9b7c", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "childassetId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5cab1261-57a8-45a0-968d-6d5ce98a92e1", + "ownerItemId" : "urn:uuid:0530e54d-1ee4-4e85-87dc-0ddd94c80978", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "childassetId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:af70076a-abbf-4a31-aab4-b2baae0eafc4", + "ownerItemId" : "urn:uuid:d133b3f5-f8b5-403d-a0ae-a8b839f14afd", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "childassetId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f0a32eee-602e-4209-9c83-adaea312eaae", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2d7cb603-f711-4e39-b87c-c3cb4e8ec4b1", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "childassetId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -66856,7 +66464,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-862307068158749400741457", + "batteryIDDMCCode" : "NO-597678879036304738525193", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -66895,16 +66503,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2022-08-20", - "version" : 1.8, - "status" : "Draft" + "issueDate" : "2021-02-13", + "version" : 1.4, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.62269999999998, + "diameter" : 229.6607, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -66912,22 +66520,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2021-04-24", + "placedOnMarket" : "2020-06-24", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-862307068158749400741457", + "value" : "NO-597678879036304738525193", "key" : "PartInstanceID" } ], - "gtin" : " 88090453", + "gtin" : " 71357626", "additionalCode" : [ { "name" : "TARIC", - "value" : "687454395" + "value" : "809162102" } ] }, "sources" : { @@ -66978,12 +66586,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-03-28", + "date" : "2022-11-16", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -66994,9 +66602,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 5.6145 ] + "left" : [ 7.556 ] }, - "id" : "XF3944" + "id" : "RL2146" } ] }, "additionalData" : [ { @@ -67019,12 +66627,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Polyamid" + "name" : "Sealant" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -67034,15 +66642,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 110 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003B2OM", + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -67054,31 +66662,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -67093,11 +66717,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-18", + "currentStateOfHealthTimestamp" : "2015-12-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -67107,35 +66731,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "931410", + "orderNumber" : "108460", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6703", + "referencedStandard" : "AS", + "referencedStandardID" : "4687", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -67151,17 +66775,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -67182,7 +66806,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-139880244941669856794800", + "value" : "NO-890670937507105471164702", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -67193,7 +66817,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -67205,10 +66829,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", + "assetId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -67217,17 +66841,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a3780205-b64b-4442-9b6f-83a6cccb1e66", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:69df32c8-750b-4ccd-bc2c-964dc7a96bca", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -67240,24 +66864,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -67483,7 +67089,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-139880244941669856794800", + "batteryIDDMCCode" : "NO-890670937507105471164702", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -67502,31 +67108,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f8bd5ea7-464f-4d99-bd32-88d776299431", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8035b73f-f1cf-44ac-b898-e91f56c7e415", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -67541,11 +67163,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-30", + "currentStateOfHealthTimestamp" : "2014-04-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -67555,25 +67177,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "195467", + "orderNumber" : "535315", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -67582,8 +67204,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4200", + "referencedStandard" : "IS", + "referencedStandardID" : "9437", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -67594,28 +67216,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -67630,7 +67252,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-050830021987571935432965", + "value" : "NO-251407512196380015033368", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -67641,7 +67263,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -67653,10 +67275,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", + "assetId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -67665,17 +67287,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:09bccfbb-c39e-4e36-8c13-a69e73c41c00", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:bf6bbf3a-6518-4ac5-9f05-720215024ed8", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -67688,24 +67310,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -67931,7 +67535,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-050830021987571935432965", + "batteryIDDMCCode" : "NO-251407512196380015033368", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -67950,31 +67554,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a42972d3-bad2-438d-be35-f7b898ab90ed", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea0e59df-1855-4298-8b4d-97834238f1bb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -67989,11 +67609,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-04", + "currentStateOfHealthTimestamp" : "2017-03-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68003,35 +67623,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "611307", + "orderNumber" : "427523", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 25 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "9031", + "referencedStandard" : "AS", + "referencedStandardID" : "9545", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -68042,12 +67662,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -68063,7 +67683,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -68078,7 +67698,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-857703197842350741949159", + "value" : "NO-583526185149068413940848", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -68089,7 +67709,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -68101,10 +67721,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", + "assetId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -68113,17 +67733,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8ee2ae10-e976-4f94-943b-c794f8e4b1e4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d9d87445-47c8-426a-8cad-cad706eb5614", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -68136,24 +67756,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -68379,7 +67981,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-857703197842350741949159", + "batteryIDDMCCode" : "NO-583526185149068413940848", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -68398,31 +68000,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2019b5ac-e31b-4268-a2aa-e49477ff11d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3674534c-8f21-4bb5-b158-e3d51f48f72f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -68437,11 +68055,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-17", + "currentStateOfHealthTimestamp" : "2015-09-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68451,35 +68069,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "105185", + "orderNumber" : "982738", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "3318", + "referencedStandard" : "DIN", + "referencedStandardID" : "9695", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -68495,17 +68113,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -68526,7 +68144,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-022011077349717419717141", + "value" : "NO-491919401576325473294029", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -68537,7 +68155,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -68549,10 +68167,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", + "assetId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -68561,17 +68179,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e1b0c08e-0fb9-44b0-8bb9-17ecc22d4dba", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8f858470-65a2-41ea-84ca-406ec510f16c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -68584,24 +68202,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -68827,7 +68427,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-022011077349717419717141", + "batteryIDDMCCode" : "NO-491919401576325473294029", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -68846,31 +68446,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:230ed21e-fa00-45db-8458-c904fa2ace95", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:92810ff7-e90b-4702-8f40-62cf9d669ec4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -68885,11 +68501,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-15", + "currentStateOfHealthTimestamp" : "2017-01-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -68899,35 +68515,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "485598", + "orderNumber" : "195593", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7376", + "referencedStandard" : "ISO", + "referencedStandardID" : "6086", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -68939,27 +68555,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -68974,7 +68590,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-426790987058017367255084", + "value" : "NO-976977065357288560640502", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -68985,7 +68601,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -68997,10 +68613,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", + "assetId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -69009,17 +68625,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:04bf1c2f-9a48-44cd-abcd-74543250218a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:fecafbdb-5c8f-4fa2-9c93-9490be941c18", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -69032,24 +68648,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -69275,7 +68873,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-426790987058017367255084", + "batteryIDDMCCode" : "NO-976977065357288560640502", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -69294,31 +68892,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1677c71-d220-4724-a5a1-a52be146c0f7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc512895-58ce-433c-9ecd-0a1b30d98da7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -69333,11 +68947,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-25", + "currentStateOfHealthTimestamp" : "2016-02-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -69347,35 +68961,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "467368", + "orderNumber" : "912292", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8105", + "referencedStandard" : "AISI", + "referencedStandardID" : "8842", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -69384,14 +68998,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -69401,13 +69015,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -69422,7 +69036,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-966360536351633404870551", + "value" : "NO-287579045342977400706749", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -69433,7 +69047,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -69445,10 +69059,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", + "assetId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -69457,17 +69071,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6f67d687-35f6-4e64-ac6d-4d51dacf8d6f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:99e44fa8-00df-4e84-8aa0-3cbddc40bdd7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -69480,24 +69094,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -69723,7 +69319,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-966360536351633404870551", + "batteryIDDMCCode" : "NO-287579045342977400706749", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -69742,31 +69338,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b4a426e2-d664-405c-9ba5-6b634864b5a9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c07cd1a3-091a-461e-8b21-af824c559bcd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -69781,11 +69393,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-19", + "currentStateOfHealthTimestamp" : "2020-05-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -69795,35 +69407,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "142539", + "orderNumber" : "646102", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 9 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3209", + "referencedStandard" : "AISI", + "referencedStandardID" : "5738", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -69832,30 +69444,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -69870,7 +69482,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-586885151204747027102290", + "value" : "NO-983223303842967272076091", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -69881,7 +69493,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -69893,10 +69505,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", + "assetId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -69905,17 +69517,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:40ac00e5-8213-46d8-8049-b832ff178200", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:184fb777-35b2-481f-8707-7922287b68c3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -69928,24 +69540,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -70171,7 +69765,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-586885151204747027102290", + "batteryIDDMCCode" : "NO-983223303842967272076091", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -70190,31 +69784,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:69690287-c176-41bb-8d90-1a2a0c205dc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:45fb85e2-ac5d-434f-b499-e4140da62a19", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -70229,11 +69839,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-08", + "currentStateOfHealthTimestamp" : "2019-08-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -70243,35 +69853,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "398156", + "orderNumber" : "866977", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "IS", - "referencedStandardID" : "6328", + "referencedStandardID" : "7311", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -70283,27 +69893,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -70318,7 +69928,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-660077714588397744604444", + "value" : "NO-320993768856422151278872", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -70329,7 +69939,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -70344,7 +69954,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", + "assetId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -70353,17 +69963,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1bde9b18-9592-4a96-93b3-1d6294658fa4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:23c8c6e5-1294-461d-8938-f0267a08a2bf", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -70376,24 +69986,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -70619,7 +70211,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-660077714588397744604444", + "batteryIDDMCCode" : "NO-320993768856422151278872", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -70638,31 +70230,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b9d0c9eb-bc44-4e54-9af0-67bd8ec1db8a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4540ada8-1ff8-4972-93ed-a32dfcdeb9a8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -70677,11 +70285,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-04-19", + "currentStateOfHealthTimestamp" : "2019-10-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -70691,25 +70299,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "536838", + "orderNumber" : "752037", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -70718,8 +70326,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5148", + "referencedStandard" : "AISI", + "referencedStandardID" : "6066", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -70731,27 +70339,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -70766,7 +70374,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-902959824536006525317752", + "value" : "NO-675735053473937289489302", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -70777,7 +70385,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -70792,7 +70400,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", + "assetId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -70801,17 +70409,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8eac0c20-d881-47c6-80c5-3dd2ca7f97a3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:42ba5b7f-6078-4a0d-bf6b-d5953617b83d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -70824,24 +70432,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -71067,7 +70657,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-902959824536006525317752", + "batteryIDDMCCode" : "NO-675735053473937289489302", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -71086,31 +70676,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ac7a6ea-ec7a-4ffa-baec-fab9b61f6017", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a154a20-7795-4d8f-b08d-322072114efe", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -71125,11 +70731,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-19", + "currentStateOfHealthTimestamp" : "2022-04-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -71139,10 +70745,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "683565", + "orderNumber" : "467486", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -71151,23 +70757,23 @@ "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8402", + "referencedStandard" : "ISO", + "referencedStandardID" : "4582", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -71179,27 +70785,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -71214,7 +70820,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-977849350799966985051994", + "value" : "NO-373423137256259745237611", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -71225,7 +70831,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -71237,10 +70843,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", + "assetId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -71249,17 +70855,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cbc584b5-8687-438f-a32c-2d27fc03a213", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4242636e-9aa6-43b3-8e44-62b2b4eab57e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -71272,24 +70878,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -71515,7 +71103,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-977849350799966985051994", + "batteryIDDMCCode" : "NO-373423137256259745237611", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -71534,28 +71122,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6ee510ff-c29c-450b-8829-aa912fef1c86", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7f2bb01a-9988-44bb-a1e0-eba6d203c6e0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4c442297-1290-41a7-808b-f2c8a227c064", + "parentItems" : [ { + "catenaXId" : "urn:uuid:927fb6d7-e066-427e-b833-408dcd9d139d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 26, + "recycledContent" : 34, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -71565,7 +71169,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 78, + "recycledContent" : 26, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -71575,7 +71179,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 39, + "recycledContent" : 12, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -71586,112 +71190,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -71699,35 +71303,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "308977", + "orderNumber" : "250072", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "3787", + "referencedStandardID" : "7654", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -71739,11 +71343,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -71753,13 +71357,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -71768,13 +71372,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-418669803382355934007191", + "value" : "NO-907456962530197506538386", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -71785,7 +71389,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -71800,237 +71404,219 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8f9d74f6-42cc-4253-b698-01dcc192d5dc", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ea8af271-297a-41b2-89bd-8daf9b2c3ddd", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:657b2156-d29e-46db-a506-6feff7c37a48", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:01f2b47d-2f7f-4bde-92fd-53aec472988d", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "childassetId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7168150d-8825-4819-a3ae-c1b5847afcb8", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:111ca3f6-d988-4555-adcd-ce50dfdf0a84", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "childassetId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c25ad346-f75e-492e-9e1c-4b4a6529103c", + "ownerItemId" : "urn:uuid:eefd1b4c-0c23-49c1-9206-3978404070f5", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "childassetId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:30d0e580-92d9-475b-b95c-4ef39944baf5", + "ownerItemId" : "urn:uuid:ef75e2f7-9343-4b79-a033-ad4d20f6c789", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "childassetId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:014a1ac3-9393-431f-b89d-384f6af10260", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4292a20e-1a59-416e-b6d3-e3b74a42d0e6", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "childassetId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b57e3223-9b54-4aed-862e-5e3829a55093", + "ownerItemId" : "urn:uuid:a4cbbc3d-835f-46af-ae15-35e6e07db6e2", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "childassetId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:da10cc8e-e01c-4495-92fb-ea4334dd1864", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d77d0a5c-dfba-43f5-89aa-1dfd8e827a76", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "childassetId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:76cbf0a1-9566-43ea-afde-b12320cbda2c", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2f8fa007-8357-4628-b6f4-2ae2d014a66d", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "childassetId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:57dc589d-ba38-45aa-923e-861aa4c170ea", + "ownerItemId" : "urn:uuid:abe8901c-cc34-4940-914d-00484e742010", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "childassetId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d23e65b6-8a18-4458-9444-86012054c456", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:0afa45be-97bb-46c2-b73b-1200fa80de7f", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "childassetId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -72256,7 +71842,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-418669803382355934007191", + "batteryIDDMCCode" : "NO-907456962530197506538386", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -72295,16 +71881,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2024-01-11", - "version" : 3, - "status" : "Invalid" + "issueDate" : "2023-03-11", + "version" : 2.1, + "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6889, + "diameter" : 229.6754, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -72312,22 +71898,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2023-10-28", + "placedOnMarket" : "2020-08-04", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-418669803382355934007191", + "value" : "NO-907456962530197506538386", "key" : "PartInstanceID" } ], - "gtin" : " 61229344", + "gtin" : " 60594398", "additionalCode" : [ { "name" : "TARIC", - "value" : "168346322" + "value" : "412181193" } ] }, "sources" : { @@ -72349,7 +71935,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -72378,12 +71964,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-28", + "date" : "2023-07-13", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -72394,9 +71980,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 5.7531 ] + "left" : [ 7.2581 ] }, - "id" : "KQ1035" + "id" : "OZ3712" } ] }, "additionalData" : [ { @@ -72419,12 +72005,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Steel" + "name" : "Copper" } ], - "critical" : [ "Lithium" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -72434,7 +72020,7 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 117 + "carbonContentTotal" : 108 }, "state" : "first life" }, @@ -72442,7 +72028,7 @@ "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -72454,31 +72040,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -72493,11 +72095,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-01-26", + "currentStateOfHealthTimestamp" : "2019-07-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -72507,23 +72109,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "282047", + "orderNumber" : "946678", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -72534,8 +72136,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2749", + "referencedStandard" : "AS", + "referencedStandardID" : "1341", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -72546,28 +72148,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -72582,7 +72184,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-556829998319273469934509", + "value" : "NO-206738772181691926197855", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -72593,7 +72195,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -72605,10 +72207,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", + "assetId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -72617,17 +72219,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fca0bcc8-295b-4f5a-8146-a4130ba512cc", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:058cebfa-ebd8-4471-a5e9-4cf37c80dad5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -72640,24 +72242,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -72883,7 +72467,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-556829998319273469934509", + "batteryIDDMCCode" : "NO-206738772181691926197855", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -72902,31 +72486,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04cbc6b5-b0d5-4962-8291-af275c3a4e84", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:57a9c41f-3866-4632-9410-59f8e6e668c6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -72941,11 +72541,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-28", + "currentStateOfHealthTimestamp" : "2023-07-31", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -72955,35 +72555,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "561423", + "orderNumber" : "234307", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4012", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "5427", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -72995,27 +72595,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -73030,7 +72630,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-114219272230854934064186", + "value" : "NO-052742864589164739825645", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -73041,7 +72641,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -73053,10 +72653,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", + "assetId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -73065,17 +72665,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d9072edf-577e-4fd8-8b22-7a30a29aa02d", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:fe3c95a7-5207-4550-8836-7cd3749413b2", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -73088,24 +72688,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -73331,7 +72913,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-114219272230854934064186", + "batteryIDDMCCode" : "NO-052742864589164739825645", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -73350,31 +72932,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ac15a719-8777-4444-893a-e6cd66348941", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c621d437-e0d8-4e13-bb41-bbbc3476f098", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -73389,11 +72987,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-18", + "currentStateOfHealthTimestamp" : "2024-03-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -73403,25 +73001,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "917481", + "orderNumber" : "486838", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -73430,8 +73028,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4194", + "referencedStandard" : "IS", + "referencedStandardID" : "9587", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -73440,30 +73038,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -73478,7 +73076,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-829824339044400302167457", + "value" : "NO-281213755155050898351986", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -73489,7 +73087,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -73504,7 +73102,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", + "assetId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -73513,17 +73111,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ddc48568-0607-49f6-87fe-17745b723e46", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:ab326912-88bc-4f0b-ab3f-4aa8d3a61227", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -73536,24 +73134,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -73779,7 +73359,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-829824339044400302167457", + "batteryIDDMCCode" : "NO-281213755155050898351986", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -73798,31 +73378,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:34f20af6-0ad7-422a-a736-8f61d1af882d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3b3155b6-30c5-45d5-adfe-9f41a905f3c6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -73837,11 +73433,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-03", + "currentStateOfHealthTimestamp" : "2014-12-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -73851,35 +73447,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "856374", + "orderNumber" : "296668", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8335", + "referencedStandard" : "JASO", + "referencedStandardID" : "8686", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -73888,30 +73484,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -73926,7 +73522,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-224566669636331090545181", + "value" : "NO-355201394729594644758836", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -73937,7 +73533,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -73952,7 +73548,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", + "assetId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -73961,17 +73557,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9646bf2c-c3da-4c69-92d2-5b3cb4079e46", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bd659308-ee9c-4700-a1fa-63736687939a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -73984,24 +73580,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -74227,7 +73805,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-224566669636331090545181", + "batteryIDDMCCode" : "NO-355201394729594644758836", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -74246,31 +73824,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98f88d1f-2a20-428e-b28f-be5c61a00833", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4aaf5056-2a40-493b-811b-f5ec4a84cd17", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -74285,11 +73879,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-12-24", + "currentStateOfHealthTimestamp" : "2021-02-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -74299,35 +73893,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "750121", + "orderNumber" : "38719", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9030", + "referencedStandard" : "JIS", + "referencedStandardID" : "7326", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -74339,11 +73933,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -74353,13 +73947,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -74374,7 +73968,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-635280441324370168837677", + "value" : "NO-075939486526376984282709", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -74385,7 +73979,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -74397,10 +73991,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", + "assetId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -74409,17 +74003,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e412ac7f-f0cc-4365-ad1a-2651b5c2d952", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:02dba73f-1afb-429e-b43a-390cb63afb93", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -74432,24 +74026,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -74675,7 +74251,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-635280441324370168837677", + "batteryIDDMCCode" : "NO-075939486526376984282709", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -74694,31 +74270,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9e7004f9-95fc-4f2f-a6d0-43efaeee5149", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9f915877-ed24-4db3-a3ca-934e3e289088", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -74733,11 +74325,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-19", + "currentStateOfHealthTimestamp" : "2019-06-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -74747,35 +74339,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "902500", + "orderNumber" : "565537", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "7217", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2610", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -74784,30 +74376,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -74822,7 +74414,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-500407972173549682027830", + "value" : "NO-270029099598139084769212", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -74833,7 +74425,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -74848,7 +74440,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", + "assetId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -74857,17 +74449,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ad34598e-a3f7-4659-aa55-c62c3e20a87b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2ddaf459-5467-4a17-b3b1-193034f2bbb0", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -74880,24 +74472,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -75123,7 +74697,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-500407972173549682027830", + "batteryIDDMCCode" : "NO-270029099598139084769212", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -75142,31 +74716,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b505e93e-5cb3-44b8-a81f-2cd593808a6e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e709d6c8-373b-4258-bb72-bc4dbdcef6df", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -75181,11 +74771,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-05", + "currentStateOfHealthTimestamp" : "2024-01-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -75195,35 +74785,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "492086", + "orderNumber" : "447058", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7931", + "referencedStandard" : "AISI", + "referencedStandardID" : "3715", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -75239,17 +74829,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -75270,7 +74860,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-219146627260821677812233", + "value" : "NO-772012543261150096664019", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -75281,7 +74871,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -75293,10 +74883,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", + "assetId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -75305,17 +74895,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:534fcb00-8980-4314-bb70-b1e224016483", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:510fca0d-feac-46de-aefe-6072c275494f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -75328,24 +74918,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -75571,7 +75143,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-219146627260821677812233", + "batteryIDDMCCode" : "NO-772012543261150096664019", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -75590,31 +75162,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b2ca291-e90d-4ddb-b0ac-9f1e5d76d637", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2bbf61e3-15a1-40e4-9235-bbf35c6349b0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -75629,11 +75217,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-18", + "currentStateOfHealthTimestamp" : "2016-05-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -75643,25 +75231,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "794841", + "orderNumber" : "394741", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -75670,8 +75258,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5710", + "referencedStandard" : "JIS", + "referencedStandardID" : "3242", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -75680,30 +75268,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -75718,7 +75306,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-074461602369719943828031", + "value" : "NO-048797398304208592765909", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -75729,7 +75317,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -75741,10 +75329,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", + "assetId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -75753,17 +75341,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7d5782cc-0955-4cb9-aaab-b2735ce1809b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d20f9b47-fdf4-42e7-b220-98e700847c4d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -75776,24 +75364,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -76019,7 +75589,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-074461602369719943828031", + "batteryIDDMCCode" : "NO-048797398304208592765909", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76038,31 +75608,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f011964f-ff83-42c4-963c-31cbece7501f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0355d164-5d56-4550-8ce4-ef3acd732d08", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -76077,11 +75663,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-12", + "currentStateOfHealthTimestamp" : "2018-08-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -76091,35 +75677,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "684632", + "orderNumber" : "599275", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "9713", + "referencedStandardID" : "4244", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -76128,30 +75714,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -76166,7 +75752,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-718137720701312328534032", + "value" : "NO-812588298789193003640192", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -76177,7 +75763,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -76192,7 +75778,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", + "assetId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -76201,17 +75787,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b1f2683b-f5f2-4d4f-a757-0c4cea3d350b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:edf84b09-94bc-44e5-9458-77f2a4685f50", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -76224,24 +75810,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -76467,7 +76035,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-718137720701312328534032", + "batteryIDDMCCode" : "NO-812588298789193003640192", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76486,31 +76054,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f9690ce3-5414-4f78-bda3-108fec809a9d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:010f024d-be51-4cc1-be19-418fc81357df", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -76525,11 +76109,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-05-21", + "currentStateOfHealthTimestamp" : "2016-05-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -76539,35 +76123,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "31858", + "orderNumber" : "976696", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5339", + "referencedStandard" : "ASME", + "referencedStandardID" : "2552", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -76576,24 +76160,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -76614,7 +76198,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-153173100258750590484715", + "value" : "NO-000743703018230304191522", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -76625,7 +76209,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -76637,10 +76221,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", + "assetId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -76649,17 +76233,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7cac3e70-9a92-4138-a50b-e08fa3be2eef", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:152ae991-458a-43af-b6bc-8aec2d142242", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -76672,24 +76256,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -76915,7 +76481,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153173100258750590484715", + "batteryIDDMCCode" : "NO-000743703018230304191522", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -76934,28 +76500,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:09208c4f-e09b-4958-875d-9c1c62712c83", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:beb51733-856e-4246-813d-4d6c293decab", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bd44c382-52c5-4dc2-a864-7a74a7bf439d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:cbc4cfe6-68a9-4005-8a79-97e72b71705e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 53, + "recycledContent" : 0, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -76965,7 +76547,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 31, + "recycledContent" : 17, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -76975,7 +76557,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 75, + "recycledContent" : 25, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -76986,112 +76568,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -77099,35 +76681,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "bpnl" : "BPNL00000003AZQP", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "279805", + "orderNumber" : "874643", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "4141", + "referencedStandardID" : "2259", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -77136,30 +76718,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -77168,13 +76750,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AZQP", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-549149826651196308165721", + "value" : "NO-186380493887351002249452", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -77185,7 +76767,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -77197,240 +76779,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "manufacturerId" : "BPNL00000003AZQP", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bde78f8e-7bae-44d1-a8ad-e94592f40f13", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:cb4f8c32-b312-4379-a56d-78fadcfaa9f5", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:50b49d6b-e2d8-46b3-b8f5-203133b3f5a0", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:2a024ebe-4ca3-478e-a28c-bf7a7c7ff4dc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "childassetId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:aba49add-604c-4354-a12f-64b8e972ce02", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:786a799f-1359-4dc8-bc47-e5b6343a90ba", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "childassetId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2ab78787-f369-4f4f-839b-70e1a2515627", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:2589d64d-ca4a-492f-a0f1-af13d2329bf3", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "childassetId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ae08a15f-1330-4f4c-8f7e-19256096c4e9", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:4e80019d-54d1-4cac-bcbe-5b2ebf3e2e87", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "childassetId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:149fc796-a851-42aa-b898-c61cf8b58579", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:51e03d85-3554-4031-a804-8cc8b059b025", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "childassetId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:59ac42a0-6506-441e-88db-e908f1e9270e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:df79da6a-3f99-461b-8296-0e794d3c1e79", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "childassetId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5ad3660d-e783-4fc9-ab41-cf61fc66f8db", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:8c77ebad-a3a6-41c5-a15d-36c058aa0443", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "childassetId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4019d567-603a-43b2-8e0a-12a6e635dec6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1df9c09f-9b24-4b5c-b5bd-b2c3ce80d84f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "childassetId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1bd6da48-788f-4635-9419-05014eaceb3e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ad7b125b-eadb-4462-bf2a-891fa9313cf2", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "childassetId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AZQP:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b39500d9-6dcf-4f2f-8f9c-dbeb46f302e2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:440cdf17-cfc3-4cbc-98c2-0b123e17298f", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "childassetId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -77656,7 +77220,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-549149826651196308165721", + "batteryIDDMCCode" : "NO-186380493887351002249452", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -77695,16 +77259,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AZQP", "eori" : "DE012345678901" }, - "issueDate" : "2023-11-05", - "version" : 2, - "status" : "Invalid" + "issueDate" : "2023-08-12", + "version" : 1.2, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6212, + "diameter" : 229.6676, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -77712,22 +77276,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 18 + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2022-11-26", + "placedOnMarket" : "2022-12-27", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-549149826651196308165721", + "value" : "NO-186380493887351002249452", "key" : "PartInstanceID" } ], - "gtin" : " 18258694", + "gtin" : " 23378696", "additionalCode" : [ { "name" : "TARIC", - "value" : "575343610" + "value" : "365551837" } ] }, "sources" : { @@ -77749,7 +77313,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -77778,12 +77342,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-13", + "date" : "2023-10-06", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -77794,9 +77358,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 2.9056 ] + "left" : [ 5.94 ] }, - "id" : "UF2327" + "id" : "NW4086" } ] }, "additionalData" : [ { @@ -77819,12 +77383,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Lithium" + "name" : "Polyamid" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -77834,15 +77398,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 117 + "carbonContentTotal" : 116 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AZQP" } } } ], @@ -77854,31 +77418,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b9db79a3-8858-491c-bcce-2272cfe1ea2a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AZQP:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f343e96a-e589-48cd-9ec0-49e8b8c3c9f3", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AZQP", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AZQP" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -77893,11 +77473,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-12", + "currentStateOfHealthTimestamp" : "2015-01-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -77907,35 +77487,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "630279", + "orderNumber" : "467605", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7579", + "referencedStandard" : "ASME", + "referencedStandardID" : "8776", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -77944,30 +77524,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -77982,7 +77562,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-941922963203176985468580", + "value" : "NO-134154718769034545537323", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -77993,7 +77573,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -78005,10 +77585,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", + "assetId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -78017,17 +77597,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1f245450-fa1e-4ef1-9911-390182fae324", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5fcfba1e-a9e5-4367-bd78-7c5eefe14826", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -78040,24 +77620,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -78283,7 +77845,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-941922963203176985468580", + "batteryIDDMCCode" : "NO-134154718769034545537323", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -78302,31 +77864,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:66ffe79c-df0d-4b24-ab29-d4727db1fe9b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8dba367b-1795-4ea3-a0ce-ec9a4f0435eb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -78341,11 +77919,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-24", + "currentStateOfHealthTimestamp" : "2019-10-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -78355,35 +77933,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "239091", + "orderNumber" : "88596", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "6123", + "referencedStandard" : "JIS", + "referencedStandardID" : "8893", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -78395,27 +77973,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -78430,7 +78008,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-432542315695843094217907", + "value" : "NO-897050660525551336224831", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -78441,7 +78019,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -78453,10 +78031,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", + "assetId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -78465,17 +78043,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5b77f3c0-fb29-4de7-90da-060d1e14d497", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a48f8a9e-601d-4ba1-9ac0-f18369656f00", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -78488,24 +78066,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -78731,7 +78291,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-432542315695843094217907", + "batteryIDDMCCode" : "NO-897050660525551336224831", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -78750,31 +78310,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2666ef2-9ea8-4c81-8e76-e507d7adb466", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a9f4195a-d190-4a6d-a25a-bdda61cedeed", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -78789,11 +78365,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-26", + "currentStateOfHealthTimestamp" : "2020-07-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -78803,35 +78379,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "309340", + "orderNumber" : "55766", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1163", + "referencedStandard" : "IS", + "referencedStandardID" : "2022", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -78843,11 +78419,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -78857,13 +78433,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -78878,7 +78454,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-965432778069734733416709", + "value" : "NO-398008298774303211921580", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -78889,7 +78465,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -78901,10 +78477,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", + "assetId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -78913,17 +78489,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6f01a0f2-04ce-4fa4-87b9-5c59a462de25", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9e15b04c-7a6c-4192-9e41-213ec26a34ae", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -78936,24 +78512,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -79179,7 +78737,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-965432778069734733416709", + "batteryIDDMCCode" : "NO-398008298774303211921580", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -79198,31 +78756,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3c81388-136f-48d6-a07e-2802fc8c6737", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8daa1301-4bba-41d9-b92a-fe4a173d5ece", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -79237,11 +78811,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-08", + "currentStateOfHealthTimestamp" : "2015-02-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -79251,35 +78825,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "903326", + "orderNumber" : "699259", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9581", + "referencedStandard" : "AISI", + "referencedStandardID" : "3310", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -79290,18 +78864,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -79311,7 +78885,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -79326,7 +78900,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-239430732070176538458534", + "value" : "NO-800917851767894262581567", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -79337,7 +78911,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -79349,10 +78923,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", + "assetId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -79361,17 +78935,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:012cbcd1-af40-4774-b7b1-cb112fc42b68", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:04941a5c-d332-4360-af84-e6f4b65374e1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -79384,24 +78958,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -79627,7 +79183,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-239430732070176538458534", + "batteryIDDMCCode" : "NO-800917851767894262581567", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -79646,31 +79202,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c16b14a9-4752-4d18-a475-fb0993200334", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f11d3bbd-a656-4759-bdd3-a01e1077a84c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -79685,11 +79257,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-22", + "currentStateOfHealthTimestamp" : "2015-03-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -79699,35 +79271,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "103858", + "orderNumber" : "547550", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "7652", + "referencedStandard" : "AISI", + "referencedStandardID" : "1863", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -79738,28 +79310,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -79774,7 +79346,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-381277313491898129024746", + "value" : "NO-782275150433189261307455", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -79785,7 +79357,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -79797,10 +79369,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", + "assetId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -79809,17 +79381,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f76503c1-2011-4825-b2e2-7beedb111d1d", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:c3863091-8305-4df3-889d-818dab77e7c1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -79832,24 +79404,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -80075,7 +79629,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-381277313491898129024746", + "batteryIDDMCCode" : "NO-782275150433189261307455", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -80094,31 +79648,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3bb2a52a-097e-4ddf-bb4d-2999aab0c0a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:07f6f4f4-de97-4529-8f6a-3910512b64f6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -80133,11 +79703,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-09-10", + "currentStateOfHealthTimestamp" : "2017-05-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -80147,25 +79717,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "931970", + "orderNumber" : "307312", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -80174,8 +79744,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1171", + "referencedStandard" : "EN", + "referencedStandardID" : "8437", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -80187,27 +79757,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -80222,7 +79792,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-150599582357067252883840", + "value" : "NO-884935048973859075276674", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -80233,7 +79803,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -80245,10 +79815,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", + "assetId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -80257,17 +79827,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8efbabcd-c53f-41ba-b38c-f80dc93291d0", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:deab6838-3847-49d8-991a-229a70acf6cc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -80280,24 +79850,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -80523,7 +80075,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-150599582357067252883840", + "batteryIDDMCCode" : "NO-884935048973859075276674", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -80542,31 +80094,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3290a08b-8a2d-4192-9554-a7fcc57a9106", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:322e72a1-4b64-4269-92af-59b560e959fc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -80581,11 +80149,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-12-27", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -80595,10 +80163,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "247381", + "orderNumber" : "995926", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -80607,23 +80175,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "6840", + "referencedStandard" : "JIS", + "referencedStandardID" : "3767", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -80632,30 +80200,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -80670,7 +80238,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-529552938923438940370052", + "value" : "NO-186036721911035672042107", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -80681,7 +80249,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -80693,10 +80261,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", + "assetId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -80705,17 +80273,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0163195c-fc9e-4722-b8b0-baac6dd058b4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:16a009a9-65c2-4581-9790-87b51cb792a5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -80728,24 +80296,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -80971,7 +80521,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-529552938923438940370052", + "batteryIDDMCCode" : "NO-186036721911035672042107", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -80990,31 +80540,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d680d9b3-90ad-4d10-aa1b-db09acb749fd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8816faa6-481b-44ec-91e2-4d196dc12fc1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -81029,11 +80595,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-11-07", + "currentStateOfHealthTimestamp" : "2015-09-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81043,35 +80609,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "765032", + "orderNumber" : "758626", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2145", + "referencedStandard" : "IS", + "referencedStandardID" : "9804", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -81080,30 +80646,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -81118,7 +80684,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-810124424804228541312316", + "value" : "NO-900471593771521504945024", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -81129,7 +80695,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -81141,10 +80707,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", + "assetId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -81153,17 +80719,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e038a318-af91-4d18-be3b-90b14e82ecaa", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a097b8b1-61cb-4b70-afdd-9972bb98be39", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -81176,24 +80742,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -81419,7 +80967,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-810124424804228541312316", + "batteryIDDMCCode" : "NO-900471593771521504945024", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -81438,31 +80986,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3e7f2fa4-bfcd-44d5-a525-4d3a0968a999", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cbeb4e3a-c096-49eb-b37b-18a138d7656c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -81477,11 +81041,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-09", + "currentStateOfHealthTimestamp" : "2016-10-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81491,25 +81055,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "520147", + "orderNumber" : "326936", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -81518,8 +81082,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1370", + "referencedStandard" : "GB", + "referencedStandardID" : "2191", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -81535,7 +81099,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -81545,13 +81109,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -81566,7 +81130,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-573921318124335337929678", + "value" : "NO-647834746207970787337902", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -81577,7 +81141,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -81589,10 +81153,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", + "assetId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -81601,17 +81165,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b3135e0c-4622-4a64-a82c-ee3b3b387895", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a5243cd6-78d2-4364-a6a2-d53b2a6c9184", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -81624,24 +81188,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -81867,7 +81413,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-573921318124335337929678", + "batteryIDDMCCode" : "NO-647834746207970787337902", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -81886,31 +81432,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f71673d2-cf6d-4f1a-b367-314c897bc3a5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -81925,11 +81487,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-03-21", + "currentStateOfHealthTimestamp" : "2021-12-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -81939,23 +81501,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "52618", + "orderNumber" : "318135", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, @@ -81966,8 +81528,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "7122", + "referencedStandard" : "AS", + "referencedStandardID" : "2990", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -81976,30 +81538,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -82014,7 +81576,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-447262560402359900551000", + "value" : "NO-526026936641650650967439", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -82025,7 +81587,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -82037,10 +81599,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", + "assetId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -82049,17 +81611,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9ceff318-73ca-4f37-8189-a8c954e06075", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b6b98c0e-e7e6-4882-acba-702ae63cc632", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -82072,24 +81634,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -82315,7 +81859,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-447262560402359900551000", + "batteryIDDMCCode" : "NO-526026936641650650967439", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -82334,28 +81878,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:959cd6d9-b032-4128-96c3-9f423a234cc3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:87036f66-b516-410b-97a6-e7f6158dbeff", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f7c63eb-9859-4d08-906e-5dad0d987bb6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d48dc777-1f87-46d0-8603-ddb02cb68fc8", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 32, + "recycledContent" : 70, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -82365,7 +81925,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 60, + "recycledContent" : 18, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -82375,7 +81935,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 9, + "recycledContent" : 63, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -82385,7 +81945,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 59, + "recycledContent" : 36, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -82395,7 +81955,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 60, + "recycledContent" : 2, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -82405,7 +81965,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 17, + "recycledContent" : 24, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -82415,7 +81975,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 60, + "recycledContent" : 49, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -82425,7 +81985,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 42, + "recycledContent" : 6, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -82435,7 +81995,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 58, + "recycledContent" : 20, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -82445,7 +82005,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 71, + "recycledContent" : 19, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -82456,322 +82016,322 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "childItems" : [ { - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AVTH", @@ -82779,33 +82339,33 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "PC-93", + "value" : "ZS-49", "key" : "manufacturerPartId" }, { - "value" : "OMBHDGEVKKOXOFVFX", + "value" : "OMBPMUVLCXXZOWCMJ", "key" : "partInstanceId" }, { - "value" : "OMBHDGEVKKOXOFVFX", + "value" : "OMBPMUVLCXXZOWCMJ", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2014-10-02T00:27:59.000Z", + "date" : "2017-02-21T08:26:49.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "partTypeInformation" : { - "manufacturerPartId" : "PC-93", + "manufacturerPartId" : "ZS-49", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -82813,17 +82373,17 @@ } ], "nameAtManufacturer" : "Vehicle Fully Electric" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -82834,8 +82394,8 @@ } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Cabrio-Limousine", - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", + "bodyVariant" : "Limousine", + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", "engine" : { "size" : 2998, "power" : 143 @@ -82845,59 +82405,59 @@ "vehicleModel" : "Vehicle Fully Electric", "productionDateGMT" : "2010-01-01", "equipmentVariants" : [ { - "code" : "S388C", - "description" : "security plus", - "group" : "special equipment" - }, { "code" : "C247R", "description" : "trailer hitch", "group" : "special equipment" }, { - "code" : "A01CR", - "description" : "remote engine start", + "code" : "S218A", + "description" : "sport automatic transmission", "group" : "special equipment" }, { - "code" : "A458D", - "description" : "parking assistance ", + "code" : "S763C", + "description" : "sport package", + "group" : "special equipment" + }, { + "code" : "A248B", + "description" : "steering wheel heating", "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2021-04-13", + "mileageTimestamp" : "2023-09-20", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "344681", + "orderNumber" : "668593", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1988", + "referencedStandard" : "DIN", + "referencedStandardID" : "3537", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -82908,8 +82468,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -82919,17 +82479,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -82944,7 +82504,7 @@ "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-264035732197252482880258", + "value" : "NO-975001459823431045751153", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -82961,7 +82521,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -82973,22 +82533,22 @@ "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "assetId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", "partTypeInformation" : { "ownerPartId" : "73849201-61", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Catalysator", "partClassification" : [ { @@ -82998,31 +82558,29 @@ "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2a9eef03-2d7a-4c59-a590-020fd2607424", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a728c566-2a96-4c6f-9922-37f34fdd912a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "childItems" : [ { - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -83030,35 +82588,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "79252", + "orderNumber" : "678370", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5951", + "referencedStandard" : "AISI", + "referencedStandardID" : "3288", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83067,20 +82625,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -83090,7 +82648,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -83105,7 +82663,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-532542427279625373288172", + "value" : "NO-335386791211940584158116", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -83122,7 +82680,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -83137,7 +82695,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "assetId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -83146,26 +82704,26 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:db164948-a214-4fe4-ae5e-ad5ee68056ca", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4c0de860-e903-4b15-bcf3-9a9f093c8738", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "childassetId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", "partTypeInformation" : { "ownerPartId" : "22782277-50", "partVersion" : "02", @@ -83178,27 +82736,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "91462591PXI", + "value" : "81583965YBK", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -83209,7 +82765,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -83222,35 +82778,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "802618", + "orderNumber" : "509844", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4789", + "referencedStandard" : "EN", + "referencedStandardID" : "7688", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83262,27 +82818,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -83297,7 +82853,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-772983460135049623346095", + "value" : "NO-962680212429426118874899", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -83308,7 +82864,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -83320,22 +82876,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "assetId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -83345,31 +82901,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e2328341-13af-42c7-9c4e-992b595839eb", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:068fe911-d389-427c-a06c-7f3af3f4be49", + "parentItems" : [ { + "catenaXId" : "urn:uuid:0b6ce176-a69d-4053-8ac5-7fa3e82ed0db", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7fe19a79-ae76-4f54-8836-48a59cea0061", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "childItems" : [ { - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -83377,10 +82931,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "758669", + "orderNumber" : "248307", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -83389,23 +82943,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "5730", + "referencedStandard" : "DIN", + "referencedStandardID" : "3316", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83414,30 +82968,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -83452,7 +83006,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-941648218258646714580566", + "value" : "NO-482541186838482146151545", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -83469,7 +83023,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -83481,10 +83035,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "assetId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -83493,29 +83047,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:556e3251-11bb-443b-8e5e-96ba0138aa01", + "ownerItemId" : "urn:uuid:d44219c5-eaea-41f0-a5ee-52d190798ef1", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "childassetId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -83525,27 +83079,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "11345547UVN", + "value" : "84769169ZHF", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -83556,7 +83108,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -83569,25 +83121,25 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "363689", + "orderNumber" : "109511", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -83596,8 +83148,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "6385", + "referencedStandard" : "EN", + "referencedStandardID" : "1787", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83613,23 +83165,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -83644,7 +83196,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-890180938494699631851225", + "value" : "NO-554904911286543987554216", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -83655,7 +83207,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -83670,16 +83222,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "assetId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", "partTypeInformation" : { "ownerPartId" : "95657762-59", "partVersion" : "04", @@ -83692,53 +83244,51 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee40ba00-f6e4-47ca-8a46-a1da2c6c7ca0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5743ba1b-0e98-4198-b2a5-710da0174089", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f99c9e58-8ca1-47ed-aebb-07364a072811", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bb1bbf6a-5592-4340-bf6d-27c54c56dd74", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "613938", + "orderNumber" : "934688", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5578", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9651", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83747,20 +83297,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -83770,7 +83320,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -83785,7 +83335,7 @@ "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-425402122056753521010122", + "value" : "NO-480669550705675128141562", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -83796,7 +83346,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -83808,22 +83358,22 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "assetId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "04", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { @@ -83833,53 +83383,51 @@ "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7abcdae1-cf51-47ed-84fa-66b17b6bd8dd", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0190f9e1-4fb3-41e6-a5d9-eb53403b8650", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "121122", + "orderNumber" : "535986", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3855", + "referencedStandard" : "JIS", + "referencedStandardID" : "4212", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -83888,24 +83436,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -83926,7 +83474,7 @@ "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-188548980582138038135464", + "value" : "NO-297345194310294821167478", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -83943,7 +83491,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -83955,22 +83503,22 @@ "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "assetId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", "partTypeInformation" : { "ownerPartId" : "28673126-98", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Door rear-right", "partClassification" : [ { @@ -83980,53 +83528,51 @@ "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3aaa24d2-3ce5-4d22-9cda-ed8f069a0e1d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:367a18fb-2f75-478d-ba34-f855b6758b2a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "772378", + "orderNumber" : "617650", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5832", + "referencedStandard" : "JASO", + "referencedStandardID" : "6216", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84037,28 +83583,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -84073,7 +83619,7 @@ "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-219651831423071932337739", + "value" : "NO-148791030618665543227159", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -84090,7 +83636,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -84102,22 +83648,22 @@ "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "assetId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", "partTypeInformation" : { "ownerPartId" : "94421589-82", - "partVersion" : "03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Engine hood", "partClassification" : [ { @@ -84127,53 +83673,51 @@ "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37901349-d690-4f02-8be4-49930020f0b0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd46f70f-8b83-40e6-8015-d28605ec74e2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "713183", + "orderNumber" : "662338", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "3403", + "referencedStandard" : "AISI", + "referencedStandardID" : "1727", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84184,12 +83728,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -84199,13 +83743,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -84220,7 +83764,7 @@ "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-229499865779802771168337", + "value" : "NO-950316208244013340642739", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84231,7 +83775,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -84243,22 +83787,22 @@ "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "assetId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", "partTypeInformation" : { "ownerPartId" : "85023955-75", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tailgate", "partClassification" : [ { @@ -84268,37 +83812,35 @@ "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c9cf8ad-008b-4f3c-b9bf-96dac5b386ad", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b97770f6-1d4a-45ee-b043-d7e5e524eaf4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "946351", + "orderNumber" : "808982", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -84309,12 +83851,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7284", + "referencedStandard" : "AISI", + "referencedStandardID" : "5448", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84326,11 +83868,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -84340,13 +83882,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -84361,7 +83903,7 @@ "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-970517596585278331348560", + "value" : "NO-925686063262121682428671", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84372,7 +83914,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -84384,22 +83926,22 @@ "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "assetId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", "partTypeInformation" : { "ownerPartId" : "13769860-47", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -84409,53 +83951,51 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4036b533-1cc6-404b-bfb1-ae8933e68de4", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:beb9298a-8405-4fbf-8539-0c19e86a4d5f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "432537", + "orderNumber" : "851640", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "1405", + "referencedStandard" : "IS", + "referencedStandardID" : "1454", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84466,28 +84006,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -84502,7 +84042,7 @@ "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-045227129302826121356634", + "value" : "NO-889797773496006924368331", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84513,7 +84053,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -84528,16 +84068,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "assetId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", "partTypeInformation" : { "ownerPartId" : "36643162-35", "partVersion" : "05", @@ -84550,53 +84090,51 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40a52e22-d4dd-4ff8-9f4a-df564362b729", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:298a4ed6-51d9-4cd0-9fd5-da838abf6594", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "528720", + "orderNumber" : "416957", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3354", + "referencedStandard" : "JASO", + "referencedStandardID" : "9643", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84605,30 +84143,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -84643,7 +84181,7 @@ "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-100036177199295659893765", + "value" : "NO-341961647694717983607414", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84654,7 +84192,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -84666,22 +84204,22 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "assetId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { @@ -84691,28 +84229,26 @@ "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:517a07ca-4186-4880-9f6d-988cad46f1b0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0f50d33a-01ec-433b-9229-ac33965a77b8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "377714", + "orderNumber" : "154481", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -84721,23 +84257,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3324", + "referencedStandard" : "AISI", + "referencedStandardID" : "7913", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84746,30 +84282,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -84784,7 +84320,7 @@ "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-551163600198049838485842", + "value" : "NO-970184929223671657380079", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84795,7 +84331,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -84810,16 +84346,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "assetId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", "partTypeInformation" : { "ownerPartId" : "22768257-25", "partVersion" : "01", @@ -84832,34 +84368,32 @@ "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:396f3b02-832b-4c31-b077-67d5af00976a", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0868146e-e93a-48ba-b0bc-c529e12bb113", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "393939", + "orderNumber" : "912455", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 @@ -84868,7 +84402,7 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -84877,8 +84411,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7998", + "referencedStandard" : "ISO", + "referencedStandardID" : "6398", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -84887,30 +84421,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -84925,7 +84459,7 @@ "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-335731119820995518008771", + "value" : "NO-027049062777701048893349", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -84936,7 +84470,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -84948,22 +84482,22 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "assetId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { @@ -84973,53 +84507,51 @@ "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7940c045-5f88-4559-bc41-ace95b83919d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:791edb42-e125-45e6-8403-afeb9714d4ba", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "230290", + "orderNumber" : "540539", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5285", + "referencedStandard" : "IS", + "referencedStandardID" : "8306", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85028,24 +84560,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -85066,7 +84598,7 @@ "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-079239086229295448541139", + "value" : "NO-015974619274064623422022", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85077,7 +84609,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -85089,22 +84621,22 @@ "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "assetId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", "partTypeInformation" : { "ownerPartId" : "58471477-24", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Exterior mirror right", "partClassification" : [ { @@ -85114,53 +84646,51 @@ "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7983f625-82f6-45b5-98d1-2f94b524adaf", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8564420b-3f31-47f9-b57b-174707500464", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "892455", + "orderNumber" : "400118", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "8069", + "referencedStandard" : "AS", + "referencedStandardID" : "4298", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85172,7 +84702,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85182,7 +84712,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85192,7 +84722,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -85207,7 +84737,7 @@ "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-662892968393446403852433", + "value" : "NO-123272195421376145336496", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85218,7 +84748,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -85233,16 +84763,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "assetId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", "partTypeInformation" : { "ownerPartId" : "09002013-68", "partVersion" : "05", @@ -85255,53 +84785,51 @@ "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b342e6e6-066b-441a-8303-1fddf9deee3f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6124d6b5-1341-4e8b-90d6-7c2b1e442d5a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "379760", + "orderNumber" : "369833", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2969", + "referencedStandard" : "AS", + "referencedStandardID" : "8137", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85310,10 +84838,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85348,7 +84876,7 @@ "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-889772651801296554294291", + "value" : "NO-955636203002042643561671", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85359,7 +84887,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -85371,22 +84899,22 @@ "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "assetId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", "partTypeInformation" : { "ownerPartId" : "43501996-98", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Dashboard", "partClassification" : [ { @@ -85396,53 +84924,51 @@ "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1ca5143-a2c9-4fa1-8f6c-c2c0d10b55b1", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:550689f9-af72-428b-bfac-8334edf8e416", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "895753", + "orderNumber" : "868997", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7750", + "referencedStandard" : "GB", + "referencedStandardID" : "4665", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85451,20 +84977,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85474,7 +85000,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -85489,7 +85015,7 @@ "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-540565783816081906926354", + "value" : "NO-668608539671271875264871", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85500,7 +85026,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -85512,22 +85038,22 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "assetId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { @@ -85537,53 +85063,51 @@ "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5fefbe3b-ccae-462d-b0a7-987f02ed9e6b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:acdefc79-3fb8-4156-ad04-3403423d6b20", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "327153", + "orderNumber" : "782072", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "2779", + "referencedStandardID" : "6018", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85594,28 +85118,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -85630,7 +85154,7 @@ "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-279563108780111500871292", + "value" : "NO-909406989040813591067152", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85641,7 +85165,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -85656,16 +85180,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "assetId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", "partTypeInformation" : { "ownerPartId" : "20125432-59", "partVersion" : "01", @@ -85678,53 +85202,51 @@ "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e4831300-d642-4dd0-8a0d-1f386bea9f7c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:edeb7c85-50c5-45a9-820e-bc715b8cb8d8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "164206", + "orderNumber" : "295410", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1736", + "referencedStandard" : "EN", + "referencedStandardID" : "3032", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85733,30 +85255,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -85771,7 +85293,7 @@ "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-208125027138910912230197", + "value" : "NO-712542909817646635893498", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85782,7 +85304,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -85794,22 +85316,22 @@ "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "assetId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", "partTypeInformation" : { "ownerPartId" : "19073706-76", - "partVersion" : "03", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Indicator right", "partClassification" : [ { @@ -85819,53 +85341,51 @@ "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75243807-9dc0-47b9-9d33-b340cd3504de", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7584f1a-ca86-451c-af88-1c7fc53894c9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "507946", + "orderNumber" : "810038", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1797", + "referencedStandard" : "ASME", + "referencedStandardID" : "8919", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -85876,18 +85396,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -85897,7 +85417,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -85912,7 +85432,7 @@ "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-990942273895285348726954", + "value" : "NO-744807829977914804467911", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -85923,7 +85443,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -85938,16 +85458,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "assetId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", "partTypeInformation" : { "ownerPartId" : "45415162-57", "partVersion" : "01", @@ -85960,43 +85480,41 @@ "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0020f2e5-1383-4956-b5e4-bbc5892c58e8", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:93e889b2-5e79-4e9d-9722-e87c4c427a7d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "774660", + "orderNumber" : "775753", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -86005,8 +85523,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8288", + "referencedStandard" : "AISI", + "referencedStandardID" : "6735", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86015,10 +85533,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -86028,17 +85546,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -86053,7 +85571,7 @@ "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-492027182143893536578211", + "value" : "NO-001742371880757211938381", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86064,7 +85582,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -86076,22 +85594,22 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "assetId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { @@ -86101,53 +85619,51 @@ "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e145368f-f49c-4b84-afff-9a5298710a4c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:477e8a1c-5ffe-410d-bda0-58d751501b20", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "995890", + "orderNumber" : "168756", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7174", + "referencedStandard" : "JIS", + "referencedStandardID" : "6177", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86156,30 +85672,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -86194,7 +85710,7 @@ "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-082450001638146989330611", + "value" : "NO-206706222944221258727004", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86205,7 +85721,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -86217,22 +85733,22 @@ "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "assetId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", "partTypeInformation" : { "ownerPartId" : "81324139-23", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Alternator", "partClassification" : [ { @@ -86242,53 +85758,51 @@ "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:03f31842-8411-45db-98f3-47bc6788907d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a959944b-c165-429e-8552-912de4fdf5a5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "942988", + "orderNumber" : "453670", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4702", + "referencedStandard" : "AS", + "referencedStandardID" : "7722", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86300,21 +85814,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -86335,7 +85849,7 @@ "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-143989149387311917330886", + "value" : "NO-483115736481205925292116", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86346,7 +85860,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -86358,22 +85872,22 @@ "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "assetId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", "partTypeInformation" : { "ownerPartId" : "57929013-09", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Air conditioning compressor", "partClassification" : [ { @@ -86383,43 +85897,41 @@ "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:119d25c3-d482-4b37-b895-0ce11bf5b5d7", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:eed036c0-d982-4148-9251-dd0a5ee38635", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "65111", + "orderNumber" : "762482", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -86428,8 +85940,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8682", + "referencedStandard" : "AS", + "referencedStandardID" : "1079", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86438,20 +85950,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -86461,7 +85973,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -86476,7 +85988,7 @@ "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-316284489461785110855343", + "value" : "NO-763017179063365380190964", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86487,7 +85999,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -86499,22 +86011,22 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "assetId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { @@ -86524,43 +86036,41 @@ "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b880072-1796-400e-bc15-bd6f7e70770f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c174bb57-87a0-40eb-8a5d-d17711cdc01a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "217551", + "orderNumber" : "961177", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 6 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -86569,8 +86079,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "7891", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "5880", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86582,27 +86092,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -86617,7 +86127,7 @@ "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-265182792920770739941687", + "value" : "NO-207568130451579171710915", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86628,7 +86138,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -86640,22 +86150,22 @@ "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "assetId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", "partTypeInformation" : { "ownerPartId" : "78744126-74", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Taillight front", "partClassification" : [ { @@ -86665,53 +86175,51 @@ "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:af0805ca-4888-4ed9-a44f-f88660530a17", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e1d426c7-e47d-46a6-9243-eb7e5d65ab25", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "36728", + "orderNumber" : "766024", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5908", + "referencedStandard" : "JIS", + "referencedStandardID" : "9645", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86720,30 +86228,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -86758,7 +86266,7 @@ "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-321655538588745557898831", + "value" : "NO-444337350901528558858992", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86769,7 +86277,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -86781,22 +86289,22 @@ "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "assetId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", "partTypeInformation" : { "ownerPartId" : "12093297-03", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part front", "partClassification" : [ { @@ -86806,53 +86314,51 @@ "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9892f6d7-97a4-4fb5-a561-89884cbb8aca", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9aff68a5-bd9a-40d5-afd7-a8a2a63bdc02", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "318095", + "orderNumber" : "685638", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1883", + "referencedStandard" : "ASME", + "referencedStandardID" : "5585", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -86861,14 +86367,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -86899,7 +86405,7 @@ "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-628587963061640627744540", + "value" : "NO-433533160602951670664143", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -86910,7 +86416,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -86922,22 +86428,22 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "assetId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "03", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { @@ -86947,53 +86453,51 @@ "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:419f4ca8-6520-471d-b7ae-71d80e1b2f83", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7dd14e39-579d-4e1f-b4b7-68a0665c3ef6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "121748", + "orderNumber" : "181371", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1250", + "referencedStandard" : "JIS", + "referencedStandardID" : "2887", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87005,27 +86509,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -87040,7 +86544,7 @@ "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-650434778386338517411768", + "value" : "NO-249946966569555718135189", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -87051,7 +86555,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -87063,22 +86567,22 @@ "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "assetId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", "partTypeInformation" : { "ownerPartId" : "00871379-44", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Chassis", "partClassification" : [ { @@ -87088,28 +86592,26 @@ "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:374c0129-0a25-47b3-98fa-2a43aafbc87d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9ecdf8ea-3012-46a2-999c-388d54f3478b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "580190", + "orderNumber" : "537373", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -87118,7 +86620,7 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -87129,12 +86631,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "7234", + "referencedStandard" : "AS", + "referencedStandardID" : "4321", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87143,10 +86645,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -87156,17 +86658,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -87181,7 +86683,7 @@ "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-231583231538167331069744", + "value" : "NO-174090109136872872766676", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -87192,7 +86694,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -87207,16 +86709,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "assetId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", "partTypeInformation" : { "ownerPartId" : "08901347-87", "partVersion" : "05", @@ -87229,53 +86731,51 @@ "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b419fd99-0419-4a24-aae4-760e2ee5d30e", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:702c6915-2a7d-4e5e-80d1-7716afd88e51", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "277682", + "orderNumber" : "906893", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "2775", + "referencedStandard" : "AS", + "referencedStandardID" : "5181", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87286,18 +86786,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -87307,7 +86807,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -87322,7 +86822,7 @@ "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-291029776531969586623216", + "value" : "NO-012626875057791040363969", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -87333,7 +86833,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -87345,22 +86845,22 @@ "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "assetId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", "partTypeInformation" : { "ownerPartId" : "45863316-60", - "partVersion" : "05", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Tires", "partClassification" : [ { @@ -87370,28 +86870,26 @@ "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e5f9ef63-db9d-4af0-9edd-df5e52aede67", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:34d6a2ec-9479-453d-9617-ee75a5cc2337", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 74, + "recycledContent" : 37, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -87401,7 +86899,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 12, + "recycledContent" : 32, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -87411,7 +86909,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 86, + "recycledContent" : 76, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -87422,32 +86920,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "childItems" : [ { - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -87455,23 +86953,23 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "740341", + "orderNumber" : "496095", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, @@ -87482,8 +86980,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5354", + "referencedStandard" : "AISI", + "referencedStandardID" : "6330", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87494,28 +86992,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -87530,7 +87028,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-035290552043863858362908", + "value" : "NO-143089154601261855753389", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -87547,7 +87045,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -87559,29 +87057,29 @@ "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "assetId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:733f72ea-c327-4de4-bf29-c6f597595a85", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:2fb0c29a-c387-49b3-872a-7d33867a081b", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "childassetId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -87590,17 +87088,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c1d012f2-2f4c-4cc5-85a9-78ab809fff87", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:67ee61ce-9499-4ab8-a9c9-397fbb4443bd", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "childassetId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -87609,17 +87107,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9068fa71-141e-43ac-94db-3d7d51550a16", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:6b4b2117-4f39-406e-8d15-1d1a6e809b62", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "childassetId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -87632,24 +87130,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -87691,10 +87171,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", "identification" : { "localIdentifiers" : [ { - "value" : "NO-035290552043863858362908", + "value" : "NO-143089154601261855753389", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -87760,22 +87240,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -87783,7 +87279,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 22, + "recycledContent" : 68, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -87793,7 +87289,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 82, + "recycledContent" : 75, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -87803,35 +87299,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "171714", + "orderNumber" : "460850", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "3822", + "referencedStandard" : "ISO", + "referencedStandardID" : "8910", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87843,7 +87339,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -87853,17 +87349,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -87871,7 +87367,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "assetId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -87888,27 +87384,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "partTypeInformation" : { - "manufacturerPartId" : "FW-24", + "manufacturerPartId" : "LM-13", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -87918,31 +87414,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98aeb31e-6919-418d-ae7b-68b21e4f3a2d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d5fbfc88-d838-4f9b-b9ba-2d5e81beab94", + "parentItems" : [ { + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "childItems" : [ { - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -87950,25 +87444,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "353267", + "orderNumber" : "739553", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -87977,8 +87471,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5162", + "referencedStandard" : "ASME", + "referencedStandardID" : "6631", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -87989,28 +87483,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -88022,10 +87516,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "06302Y8-24", + "value" : "92547Z4-89", "key" : "manufacturerPartId" }, { - "value" : "NO-567469628275481484503905", + "value" : "NO-455460779808771000947246", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -88036,10 +87530,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "partTypeInformation" : { - "manufacturerPartId" : "06302Y8-24", - "customerPartId" : "06302Y8-24", + "manufacturerPartId" : "92547Z4-89", + "customerPartId" : "92547Z4-89", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88048,10 +87542,10 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "assetId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -88060,29 +87554,29 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:27e1e609-2c18-46c7-9dac-791ce42fa3b8", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:9938c569-dbe4-4807-a002-3af358bedfb5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "childassetId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", "partTypeInformation" : { - "ownerPartId" : "06302Y8-24", - "partVersion" : "05", + "ownerPartId" : "92547Z4-89", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -88092,22 +87586,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -88115,7 +87607,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 83, + "recycledContent" : 61, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -88125,7 +87617,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 11, + "recycledContent" : 87, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -88135,35 +87627,35 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "477848", + "orderNumber" : "523781", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1650", + "referencedStandard" : "ISO", + "referencedStandardID" : "6516", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88175,17 +87667,17 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -88203,7 +87695,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "assetId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -88220,9 +87712,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "partTypeInformation" : { - "manufacturerPartId" : "CK-14", + "manufacturerPartId" : "VB-57", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88230,17 +87722,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -88250,26 +87742,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b518e810-41c7-4432-87f6-491f1b3b486b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:19caee60-b204-4f3d-9b99-c8f1554555f5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:91ec20ec-67ab-4699-9ae9-029ed5e332dc", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:57293dc4-e04e-4c1d-8f28-05c321cc8b66", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -88284,35 +87774,35 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "680147", + "orderNumber" : "140056", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "8455", + "referencedStandardID" : "9003", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88321,30 +87811,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -88352,7 +87842,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "assetId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -88369,9 +87859,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "partTypeInformation" : { - "manufacturerPartId" : "WI-49", + "manufacturerPartId" : "CY-70", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88379,17 +87869,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -88399,28 +87889,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:af01428c-fe09-47d5-8648-e0ef4ee05f9f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:94ae80dd-e5e2-45cc-893c-9fa63622e47f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:015aa300-f0ea-47cd-84d5-969f2cb2cf75", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3a37dee0-12f7-4a70-9cb3-500f53defc6e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 15, + "recycledContent" : 80, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -88431,32 +87919,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "childItems" : [ { - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -88464,35 +87952,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "488720", + "orderNumber" : "113602", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "8711", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9441", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88501,30 +87989,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -88536,10 +88024,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "46614X1-98", + "value" : "77136H7-68", "key" : "manufacturerPartId" }, { - "value" : "NO-259210182774842440463682", + "value" : "NO-432349591499397336015737", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -88550,10 +88038,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "partTypeInformation" : { - "manufacturerPartId" : "46614X1-98", - "customerPartId" : "46614X1-98", + "manufacturerPartId" : "77136H7-68", + "customerPartId" : "77136H7-68", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88562,10 +88050,10 @@ "nameAtManufacturer" : "ECU", "nameAtCustomer" : "ECU" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "assetId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -88574,17 +88062,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4b437202-c07c-4a4e-921a-03c01c724184", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:e56d7b9e-71ef-46c1-8677-6e2fc4c1b962", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "childassetId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -88593,17 +88081,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1e8dddda-b3f2-4719-b9b8-d3eedf7f1d92", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:604d7fe8-be66-4623-8957-4c84f1c1c929", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "childassetId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -88612,29 +88100,29 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2736ba00-f1c7-4a3b-8978-ca9f9f58674f", + "ownerItemId" : "urn:uuid:0639e622-b1d0-45a5-912d-a0c8a4611fbb", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "childassetId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", "partTypeInformation" : { - "ownerPartId" : "46614X1-98", - "partVersion" : "04", + "ownerPartId" : "77136H7-68", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "ECU", "partClassification" : [ { @@ -88644,22 +88132,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -88667,7 +88153,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 88, + "recycledContent" : 36, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -88677,7 +88163,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 14, + "recycledContent" : 22, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -88687,25 +88173,25 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "141371", + "orderNumber" : "396929", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -88714,8 +88200,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "6371", + "referencedStandard" : "IS", + "referencedStandardID" : "6837", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88737,17 +88223,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -88755,7 +88241,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "assetId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -88772,9 +88258,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "partTypeInformation" : { - "manufacturerPartId" : "GR-15", + "manufacturerPartId" : "XL-29", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88782,17 +88268,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -88802,31 +88288,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d26ee1fc-2a6c-460e-b3ac-14d5bf23806b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c5a28ce-0026-482c-b1e0-727342ff5dac", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "childItems" : [ { - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -88834,35 +88318,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "348770", + "orderNumber" : "475590", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "9834", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6126", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -88871,30 +88355,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -88906,10 +88390,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "56212J7-52", + "value" : "43065M5-33", "key" : "manufacturerPartId" }, { - "value" : "NO-727634309611409688637610", + "value" : "NO-900603834614288799374160", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -88920,10 +88404,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "partTypeInformation" : { - "manufacturerPartId" : "56212J7-52", - "customerPartId" : "56212J7-52", + "manufacturerPartId" : "43065M5-33", + "customerPartId" : "43065M5-33", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -88932,41 +88416,41 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "assetId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9941c55f-8624-4702-8de9-a9823424f7a5", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ce9b013f-4bbf-4661-8607-273a680d8679", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "childassetId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", "partTypeInformation" : { - "ownerPartId" : "56212J7-52", - "partVersion" : "04", + "ownerPartId" : "43065M5-33", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -88976,22 +88460,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -88999,7 +88481,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 60, + "recycledContent" : 54, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -89009,7 +88491,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 52, + "recycledContent" : 88, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -89019,23 +88501,23 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "897849", + "orderNumber" : "554339", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -89046,8 +88528,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "4800", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6169", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -89056,24 +88538,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -89087,7 +88569,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "assetId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -89104,27 +88586,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "partTypeInformation" : { - "manufacturerPartId" : "JK-61", + "manufacturerPartId" : "IQ-71", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -89134,22 +88616,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b527ccc-85f3-4787-ac4e-7a0356d4175f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0ad79ce7-fe94-4bea-bc88-f89edcdbdbbd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ba33343e-9907-4d21-b79e-1b82bc7fa02a", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:be00b3d2-67a3-4677-ae22-60592f296a52", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -89157,7 +88637,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 15, + "recycledContent" : 78, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -89167,7 +88647,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 27, + "recycledContent" : 26, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -89177,35 +88657,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "930368", + "orderNumber" : "971942", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7013", + "referencedStandard" : "ASME", + "referencedStandardID" : "3908", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -89216,7 +88696,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { @@ -89237,7 +88717,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -89249,24 +88729,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "67982V2-87", + "value" : "07238J4-45", "key" : "manufacturerPartId" }, { - "value" : "NO-737073696787221982590376", + "value" : "NO-199908341628893542049026", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "partTypeInformation" : { - "manufacturerPartId" : "67982V2-87", - "customerPartId" : "67982V2-87", + "manufacturerPartId" : "07238J4-45", + "customerPartId" : "07238J4-45", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -89278,18 +88758,18 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "assetId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", "partTypeInformation" : { - "ownerPartId" : "67982V2-87", + "ownerPartId" : "07238J4-45", "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Engineering Plastics", @@ -89300,25 +88780,87 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d550cdd-b810-43f8-8a7d-782b8cee42b3", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:95980ab6-7d30-418f-95d7-110147163576", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7bafafa5-2d18-459c-9589-17dc8b2a9ffd", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:c6dccf32-d983-4ec7-ba18-3cb9624f0f5d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "childItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { @@ -89328,7 +88870,7 @@ "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-895713475469629339512267", + "value" : "NO-629148426832070851940458", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -89345,7 +88887,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -89357,7 +88899,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -89396,7 +88938,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-895713475469629339512267", + "oeNumber" : "NO-629148426832070851940458", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -89409,7 +88951,7 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", + "assetId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -89418,17 +88960,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ff168200-fba9-4d50-8074-116121dd9c48", + "ownerItemId" : "urn:uuid:084e43af-3f54-416b-9145-e8f218001cd3", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "childassetId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89437,17 +88979,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5e73f952-0541-4d3c-b1b3-11e7bb8ef690", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:a3a427cb-d5e3-4df2-a205-239204ae9b3b", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "childassetId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89456,17 +88998,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dd8779e0-f4e3-429c-8e6d-f5e64984645c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2dc4cf49-c40c-445f-a032-552266047ad7", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "childassetId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89475,17 +89017,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:55e3b256-5df2-4b27-b0bf-24ef35aff527", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bc192b93-3e6c-44a0-9bec-be27b89fb75b", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "childassetId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89494,17 +89036,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ba7f0989-cb80-4f21-825b-f557e529664d", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e0cf82db-4235-4785-b1c1-70791d4f108e", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "childassetId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -89513,17 +89055,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2f6855f9-fdcc-4dd1-9606-1661b39876d7", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:5d1a088c-a099-4645-9b6f-99742c2adfa9", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "childassetId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -89558,36 +89100,36 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2021-09-27", - "version" : 2.2, - "status" : "Invalid" + "issueDate" : "2024-01-27", + "version" : 1.4, + "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1257.0484, - "width" : 1257, - "length" : 2052, - "weight" : 675, - "height" : 303 + "diameter" : 1302.0299, + "width" : 1302, + "length" : 2040, + "weight" : 653, + "height" : 290 }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2020-10-07", + "placedOnMarket" : "2024-01-10", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-895713475469629339512267", + "value" : "NO-629148426832070851940458", "key" : "PartInstanceID" } ], - "gtin" : " 29402437", + "gtin" : " 57297030", "additionalCode" : [ { "name" : "TARIC", - "value" : "299862107" + "value" : "580817482" } ] }, "sources" : { @@ -89609,7 +89151,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -89638,12 +89180,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-12-29", + "date" : "2024-03-26", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -89654,9 +89196,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.9695 ] + "left" : [ 5.3328 ] }, - "id" : "XE1625" + "id" : "WV8702" } ] }, "additionalData" : [ { @@ -89682,7 +89224,7 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Cobalt" + "name" : "Manganese" } ], "critical" : [ "Graphite" ], "carbonFootprint" : { @@ -89694,39 +89236,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 113 + "carbonContentTotal" : 118 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ea02e4f3-4f95-4784-8ae5-461ce4c6f7ef", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 2, + "recycledContent" : 74, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -89736,7 +89279,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 8, + "recycledContent" : 1, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -89746,7 +89289,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 79, + "recycledContent" : 42, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -89756,97 +89299,33 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "childItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AVTH", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "98791", + "orderNumber" : "531596", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4910", + "referencedStandard" : "EN", + "referencedStandardID" : "9183", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -89857,18 +89336,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -89878,31 +89357,13 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -90128,7 +89589,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-895713475469629339512267", + "batteryIDDMCCode" : "NO-629148426832070851940458", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -90147,6 +89608,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:683cd3f9-abf9-4551-925b-5aba2c7944a9", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AVTH" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -90162,7 +89638,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 77, + "recycledContent" : 79, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -90172,7 +89648,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 58, + "recycledContent" : 46, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -90182,7 +89658,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 64, + "recycledContent" : 7, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -90193,112 +89669,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -90306,23 +89782,23 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "276472", + "orderNumber" : "172230", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -90333,8 +89809,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "4561", + "referencedStandard" : "ISO", + "referencedStandardID" : "6739", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -90343,30 +89819,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -90381,7 +89857,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-687113612968742222940062", + "value" : "NO-816927354992517373478168", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -90392,7 +89868,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -90407,7 +89883,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", + "assetId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -90416,17 +89892,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2a9c3adb-c757-4c14-bcea-07920643bf17", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:1e26b65a-b6c4-4eb6-bc56-6bd674e0bdc2", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90435,17 +89911,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ad92ac7d-a13d-4338-a6de-8a01e66c3896", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:570d5d5f-2b13-4a7a-b1b9-029eacd72f95", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "childassetId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90454,17 +89930,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:488e74af-d665-4b41-a6f3-74f2384773f2", + "ownerItemId" : "urn:uuid:344733d9-eb49-4420-b17c-db88ec69a365", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "childassetId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90473,17 +89949,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:82621f3a-6943-4b28-a17b-6b7bd600ddb5", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ebbfd6ce-03cb-4a1a-b5ac-de28f996400b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "childassetId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90492,17 +89968,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bd609bc9-b8b6-404e-90a7-32ec9111050f", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:89a15c19-db4a-4ec5-8863-4ace0bf0aa5a", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "childassetId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90511,17 +89987,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3cad2036-f3aa-4117-a32c-efcc07975c0d", + "ownerItemId" : "urn:uuid:6457216f-3f44-4661-b8b7-20a4d99aeec3", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "childassetId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90530,17 +90006,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fbfd002a-0f50-4f73-a768-47d64ad9e0b5", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c3a47080-9181-4fe0-90ba-21010cb3a4c4", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "childassetId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90549,17 +90025,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a54fc9c0-d2dd-417d-9d31-4d764e114782", + "ownerItemId" : "urn:uuid:33ebd43f-4d5e-4105-925b-f878b2e581fb", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "childassetId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90568,17 +90044,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5868633e-c78c-4411-9bd6-a5bed1069a82", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:70440ca2-6fb1-40b2-ba27-252b62539489", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "childassetId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90587,17 +90063,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3e4124e6-3c37-4910-8aaf-c09ffdd6252d", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:83897b1e-1cd4-4608-812e-52652fdd28c6", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "childassetId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -90606,38 +90082,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e3b0f102-98b3-42de-973c-0e34aa51bc22", + "ownerItemId" : "urn:uuid:8091fe88-344e-4e22-b39c-59dda9a079f5", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "childassetId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -90863,7 +90321,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-687113612968742222940062", + "batteryIDDMCCode" : "NO-816927354992517373478168", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -90905,13 +90363,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2022-10-13", - "version" : 1.2, - "status" : "Approved" + "issueDate" : "2024-01-09", + "version" : 2.7, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6427, + "diameter" : 229.644, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -90919,22 +90377,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2022-03-21", + "placedOnMarket" : "2023-11-25", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-687113612968742222940062", + "value" : "NO-816927354992517373478168", "key" : "PartInstanceID" } ], - "gtin" : " 63000226", + "gtin" : " 86831934", "additionalCode" : [ { "name" : "TARIC", - "value" : "100159072" + "value" : "743299321" } ] }, "sources" : { @@ -90956,7 +90414,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -90985,7 +90443,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-10-22", + "date" : "2024-03-19", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -91001,9 +90459,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.2394 ] + "left" : [ 7.3471 ] }, - "id" : "JG9921" + "id" : "AP6260" } ] }, "additionalData" : [ { @@ -91029,9 +90487,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Graphite" + "name" : "Polyamid" } ], - "critical" : [ "Manganese" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -91041,14 +90499,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 116 + "carbonContentTotal" : 123 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AVTH" } } @@ -91061,31 +90519,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -91100,11 +90574,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-10-11", + "currentStateOfHealthTimestamp" : "2015-02-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -91114,10 +90588,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "29945", + "orderNumber" : "34670", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -91126,23 +90600,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "8692", + "referencedStandardID" : "6519", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -91164,17 +90638,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -91189,7 +90663,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-991767235182356540580326", + "value" : "NO-046702061904874808708796", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -91200,7 +90674,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -91212,10 +90686,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", + "assetId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -91224,17 +90698,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0629471c-f896-4217-b79e-0aeb31224d62", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e4215b1b-ea6d-4a3c-a461-075265299596", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -91247,24 +90721,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -91490,7 +90946,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-991767235182356540580326", + "batteryIDDMCCode" : "NO-046702061904874808708796", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -91509,31 +90965,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:10be664a-70c4-419c-9210-0cc01fa12b58", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9cca7412-c7d0-467d-80b2-c300ae8c5437", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -91548,11 +91020,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-09", + "currentStateOfHealthTimestamp" : "2018-08-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -91562,35 +91034,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "512105", + "orderNumber" : "657890", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "4439", + "referencedStandardID" : "4653", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -91599,10 +91071,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -91612,17 +91084,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -91637,7 +91109,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-545804594773407247538373", + "value" : "NO-470874275732939576623426", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -91648,7 +91120,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -91663,7 +91135,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", + "assetId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -91672,17 +91144,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9697415f-e8cb-4f58-9527-ea63f831902a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0a97be8d-6ebe-4564-9e36-78a850aaa446", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -91695,24 +91167,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -91938,7 +91392,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-545804594773407247538373", + "batteryIDDMCCode" : "NO-470874275732939576623426", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -91957,31 +91411,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f57c3942-fdf3-423c-9c8b-5287c8583915", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd675d8b-22bd-4c13-9408-5849d0fa9413", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -91996,11 +91466,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-09", + "currentStateOfHealthTimestamp" : "2024-01-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92010,35 +91480,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "550731", + "orderNumber" : "922172", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6134", + "referencedStandard" : "DIN", + "referencedStandardID" : "7387", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -92047,20 +91517,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -92070,7 +91540,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -92085,7 +91555,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-631371404662581637455960", + "value" : "NO-085619066206559305485202", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -92096,7 +91566,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -92108,10 +91578,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", + "assetId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -92120,17 +91590,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cdbd0dc2-9482-45e6-9e2a-bd2bf2bce918", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:08a36d10-1b64-4f26-85b2-aaaedede1e46", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -92143,24 +91613,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -92386,7 +91838,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-631371404662581637455960", + "batteryIDDMCCode" : "NO-085619066206559305485202", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -92405,31 +91857,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0a37ea17-b981-43fc-93a0-fd0b78a9c195", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:776c002e-f878-4d31-9eac-d29f44c19979", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -92444,11 +91912,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-08-25", + "currentStateOfHealthTimestamp" : "2022-06-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92458,16 +91926,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "783564", + "orderNumber" : "129200", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 17 @@ -92476,17 +91944,17 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "1182", + "referencedStandardID" : "5324", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -92495,30 +91963,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -92533,7 +92001,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-045002863370677316790179", + "value" : "NO-757339058089831668193292", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -92544,7 +92012,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -92556,10 +92024,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", + "assetId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -92568,17 +92036,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:37b41ccc-e207-418a-814a-70471ab92615", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4d3a145b-f5c1-4fbf-a477-9b4540eafe9a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -92591,24 +92059,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -92834,7 +92284,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-045002863370677316790179", + "batteryIDDMCCode" : "NO-757339058089831668193292", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -92853,31 +92303,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:43694f40-4ff6-4ba1-ba7d-ac20f57c6b96", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:833523eb-a768-4bf9-b262-1f16db5c2534", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -92892,11 +92358,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-25", + "currentStateOfHealthTimestamp" : "2017-06-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-06", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -92906,16 +92372,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "166529", + "orderNumber" : "960225", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 @@ -92929,12 +92395,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2290", + "referencedStandard" : "AS", + "referencedStandardID" : "4753", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -92943,24 +92409,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -92981,7 +92447,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-352043035937848602986982", + "value" : "NO-625897587140967036600345", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -92992,7 +92458,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -93007,7 +92473,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", + "assetId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -93016,17 +92482,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1a349f23-007b-4065-b06d-37db5a8ff2b9", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2779fe8d-7fb9-41aa-8abc-a64e05fb704c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -93039,24 +92505,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -93282,7 +92730,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-352043035937848602986982", + "batteryIDDMCCode" : "NO-625897587140967036600345", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -93301,31 +92749,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6cf22a85-aa55-43db-898c-e701856054b7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:698944a7-8aac-498b-bc7f-944a4cd03e30", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -93340,11 +92804,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-04-12", + "currentStateOfHealthTimestamp" : "2018-09-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -93354,35 +92818,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "59352", + "orderNumber" : "713216", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7924", + "referencedStandard" : "JASO", + "referencedStandardID" : "5623", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -93391,30 +92855,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -93429,7 +92893,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-632396764290897802894727", + "value" : "NO-452748343042728907626021", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -93440,7 +92904,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -93452,10 +92916,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", + "assetId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -93464,17 +92928,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f02aa833-37b4-4dc1-b296-1cb081f28863", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4ba6192e-9fd9-409c-864f-e6e15b647656", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -93487,24 +92951,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -93730,7 +93176,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-632396764290897802894727", + "batteryIDDMCCode" : "NO-452748343042728907626021", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -93749,31 +93195,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b35a16a7-b275-4870-8f0d-896b42b0669f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9de6976d-487d-42a4-9da8-ac39a7ab12e9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -93788,11 +93250,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-19", + "currentStateOfHealthTimestamp" : "2024-01-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -93802,16 +93264,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "250126", + "orderNumber" : "604683", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 19 @@ -93820,17 +93282,17 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7219", + "referencedStandard" : "ISO", + "referencedStandardID" : "6262", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -93841,8 +93303,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -93852,17 +93314,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -93877,7 +93339,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-609733587434520163359758", + "value" : "NO-080214182903807107239261", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -93888,7 +93350,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -93903,7 +93365,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", + "assetId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -93912,17 +93374,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e4efde77-c9a7-4ca6-8dec-e6eb0b47633e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5b7ca464-ca78-4c86-b373-b65a5e71906f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -93935,24 +93397,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -94178,7 +93622,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-609733587434520163359758", + "batteryIDDMCCode" : "NO-080214182903807107239261", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -94197,31 +93641,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0cb2c4b4-58f2-485d-9801-8cc0bd853a50", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5be1091f-dba8-46d9-9ca8-e83a90a0253f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -94236,11 +93696,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-26", + "currentStateOfHealthTimestamp" : "2016-12-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -94250,35 +93710,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "245679", + "orderNumber" : "323529", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "8593", + "referencedStandardID" : "6842", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -94290,17 +93750,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -94310,7 +93770,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -94325,7 +93785,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-000743277368034273286877", + "value" : "NO-238785908693173993701869", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -94336,7 +93796,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -94348,10 +93808,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", + "assetId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -94360,17 +93820,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:05b8ea1b-a9ad-4747-a573-1ebf1b8d963e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:880fe460-37ec-4123-9cc4-775d33d9f3d8", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -94383,24 +93843,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -94626,7 +94068,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-000743277368034273286877", + "batteryIDDMCCode" : "NO-238785908693173993701869", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -94645,31 +94087,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:71481b81-107a-45b9-b320-25c5b81b5157", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e12b4d2e-b44f-4d87-952e-a9f7a9c01f7a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -94684,11 +94142,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-12-04", + "currentStateOfHealthTimestamp" : "2015-06-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -94698,25 +94156,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "757463", + "orderNumber" : "54354", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -94725,8 +94183,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3457", + "referencedStandard" : "EN", + "referencedStandardID" : "3577", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -94737,28 +94195,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -94773,7 +94231,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-081673198748776020784976", + "value" : "NO-172826221038997175209151", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -94784,7 +94242,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -94796,10 +94254,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", + "assetId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -94808,17 +94266,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:630521f7-1210-4911-b636-c52af839b667", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e5cc3f22-5e92-4a4c-8f6c-bd3535e388b1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -94831,24 +94289,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -95074,7 +94514,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-081673198748776020784976", + "batteryIDDMCCode" : "NO-172826221038997175209151", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -95093,31 +94533,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9925b429-6410-44b0-900a-d8d00640d956", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5629169e-75fa-4d52-8a7d-ce48e78839be", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -95132,11 +94588,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-01-21", + "currentStateOfHealthTimestamp" : "2021-10-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -95146,25 +94602,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "345102", + "orderNumber" : "366517", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -95173,8 +94629,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4091", + "referencedStandard" : "JASO", + "referencedStandardID" : "7095", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -95183,30 +94639,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -95221,7 +94677,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-340269000861175179352744", + "value" : "NO-971590305979907343173679", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -95232,7 +94688,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -95247,7 +94703,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", + "assetId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -95256,17 +94712,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:dd8e0ecd-3bc9-4d33-82b3-2d22b48b4b24", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:92433206-2281-4041-a780-3cf4fb019a4a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -95279,24 +94735,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -95522,7 +94960,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-340269000861175179352744", + "batteryIDDMCCode" : "NO-971590305979907343173679", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -95541,28 +94979,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fd3b4a75-5300-4cba-8d2b-7188b7ff6929", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b922d44e-3284-4bf3-87e6-1586d647414e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7eaa312a-ff29-45a6-b205-3a65d9043c63", + "parentItems" : [ { + "catenaXId" : "urn:uuid:843de0a1-ed1b-4b62-a1a5-0f17de95cf2e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 0, + "recycledContent" : 66, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -95572,7 +95026,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 75, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -95582,7 +95036,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 26, + "recycledContent" : 48, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -95593,112 +95047,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -95706,35 +95160,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "528112", + "orderNumber" : "892930", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JIS", - "referencedStandardID" : "4264", + "referencedStandardID" : "2312", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -95743,14 +95197,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -95760,7 +95214,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -95781,7 +95235,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-930399204706280839185780", + "value" : "NO-336392663226749996266073", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -95792,7 +95246,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -95804,10 +95258,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", + "assetId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -95816,17 +95270,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:30726710-6781-4ecf-bc10-32f4603e472e", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:25a841b3-848f-448b-b993-294a1dbb3f9f", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95835,17 +95289,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1627b916-c61f-45c2-8373-a3cde6dca474", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ef86f980-75ac-45f3-b1bd-f9677408302a", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "childassetId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95854,17 +95308,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:68dc0b52-484d-43a4-951a-c9aae0d3f6e0", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:e4aed370-073f-47fc-826a-23a30066c48c", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "childassetId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95873,17 +95327,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:315888a4-412c-4ac6-bf04-e86a413202e9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9453b349-db19-4c7c-98d2-540aefaa9e61", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "childassetId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95892,17 +95346,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c4c3b3b1-90b6-46cb-9b75-8d1db6390061", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:a0fd225d-e12e-48a8-a89c-996b2b6255b8", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "childassetId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95911,17 +95365,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:db348591-16d7-4045-828f-cbc2d8dd55d4", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:507c8402-17ae-4b9f-9e62-4e7f91c3bd6a", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "childassetId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95930,17 +95384,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:82e82195-5ea8-4672-b954-fdf6cb3616aa", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:36119be2-40fe-4a1d-a250-9494340a8709", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "childassetId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95949,17 +95403,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1031da68-24f2-429e-a453-acc8c31c0f9c", + "ownerItemId" : "urn:uuid:1d382899-8572-407b-86c3-fef120424710", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "childassetId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95968,17 +95422,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8fd8a5ad-fd1f-43f3-8cda-f7d0c50602dd", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a5daac3c-508a-4b99-b646-df4f7ab117e4", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "childassetId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -95987,17 +95441,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b6ff08f4-f895-4730-8f98-e0f7ef1d7158", + "ownerItemId" : "urn:uuid:800d07ca-957d-4e30-8de2-15426a92685f", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "childassetId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -96006,38 +95460,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7f33b8ad-f7d7-4ee0-9eee-a320b9408782", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:07f9e4ec-ea80-4200-80ea-c21124947753", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "childassetId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -96263,7 +95699,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-930399204706280839185780", + "batteryIDDMCCode" : "NO-336392663226749996266073", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -96305,13 +95741,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-12-07", - "version" : 1.5, - "status" : "Expired" + "issueDate" : "2023-10-10", + "version" : 3, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6988, + "diameter" : 229.6351, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -96319,22 +95755,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2022-03-14", + "placedOnMarket" : "2020-11-09", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-930399204706280839185780", + "value" : "NO-336392663226749996266073", "key" : "PartInstanceID" } ], - "gtin" : " 50405858", + "gtin" : " 26965204", "additionalCode" : [ { "name" : "TARIC", - "value" : "217762458" + "value" : "181531580" } ] }, "sources" : { @@ -96385,7 +95821,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-03-02", + "date" : "2024-02-09", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -96401,9 +95837,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 8.8673 ] + "left" : [ 6.2348 ] }, - "id" : "CO2626" + "id" : "XR4148" } ] }, "additionalData" : [ { @@ -96426,12 +95862,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Steel" + "name" : "Copper" } ], - "critical" : [ "Manganese" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -96446,9 +95882,9 @@ "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AVTH" } } @@ -96461,31 +95897,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -96500,11 +95952,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-25", + "currentStateOfHealthTimestamp" : "2021-01-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -96514,10 +95966,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "849845", + "orderNumber" : "529121", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -96526,23 +95978,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "6614", + "referencedStandard" : "ISO", + "referencedStandardID" : "8140", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -96551,10 +96003,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -96564,17 +96016,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -96589,7 +96041,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-875824163752079594295649", + "value" : "NO-842110813695126127816787", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -96600,7 +96052,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -96612,10 +96064,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", + "assetId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -96624,17 +96076,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:45932070-a93c-4c77-81a3-116aec564a05", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6429a4c6-50ff-4b83-b185-2f1826d9d5c1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -96647,24 +96099,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -96890,7 +96324,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-875824163752079594295649", + "batteryIDDMCCode" : "NO-842110813695126127816787", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -96909,31 +96343,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ddca3b3c-7820-4758-ab71-272c21df1d9d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e7bad19-4838-4235-bf28-9f8b8a53ca5b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -96948,11 +96398,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-30", + "currentStateOfHealthTimestamp" : "2017-10-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -96962,35 +96412,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "94016", + "orderNumber" : "873414", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "3455", + "referencedStandardID" : "3621", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -96999,30 +96449,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -97037,7 +96487,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-181274919815027048779446", + "value" : "NO-901075001338711413234812", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -97048,7 +96498,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -97060,10 +96510,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", + "assetId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -97072,17 +96522,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4c34eac1-9a0b-4675-9821-7217b4d3dc42", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4fecd5e7-df86-4e1a-a898-297b10ec3bea", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -97095,24 +96545,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -97338,7 +96770,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-181274919815027048779446", + "batteryIDDMCCode" : "NO-901075001338711413234812", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -97357,31 +96789,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9df1f8dc-6c77-45d7-a4bf-e9ce065b134c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c5be0ca9-d04d-4967-83c7-e79cae198c63", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -97396,11 +96844,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-28", + "currentStateOfHealthTimestamp" : "2014-07-03", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -97410,35 +96858,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "613386", + "orderNumber" : "329886", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "5374", + "referencedStandardID" : "9878", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -97449,28 +96897,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -97485,7 +96933,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-624099875318346541799114", + "value" : "NO-162200942779463110193609", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -97496,7 +96944,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -97508,10 +96956,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", + "assetId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -97520,17 +96968,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:06f38f5c-3879-4e92-a522-686f5443428a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:e9b319a1-578b-48b7-9d0d-5ceffa7ea717", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -97543,24 +96991,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -97786,7 +97216,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-624099875318346541799114", + "batteryIDDMCCode" : "NO-162200942779463110193609", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -97805,31 +97235,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9a7797e4-673e-4864-9158-501410e6bf7a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f2f8f5d9-1a9f-49ef-ae16-ec7e567907b1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -97844,11 +97290,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-10", + "currentStateOfHealthTimestamp" : "2023-01-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -97858,14 +97304,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "884019", + "orderNumber" : "689144", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -97874,19 +97320,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "6746", + "referencedStandard" : "IS", + "referencedStandardID" : "4646", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -97895,10 +97341,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -97908,17 +97354,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -97933,7 +97379,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-605812180459007775211801", + "value" : "NO-058298438745598770420719", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -97944,7 +97390,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -97956,10 +97402,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", + "assetId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -97968,17 +97414,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e0cc79df-b1cc-4179-9407-4e0f4fd4f19f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4fa03dd2-a841-4d8e-aa10-a0f97580a13e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -97991,24 +97437,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -98234,7 +97662,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-605812180459007775211801", + "batteryIDDMCCode" : "NO-058298438745598770420719", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -98253,31 +97681,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:24465c42-2bb3-4927-9f16-b110753e4875", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8eebc9b-3a62-495b-8f27-b1c238247e25", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -98292,11 +97736,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-10", + "currentStateOfHealthTimestamp" : "2014-05-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -98306,35 +97750,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "935131", + "orderNumber" : "942119", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "8100", + "referencedStandard" : "ASME", + "referencedStandardID" : "4174", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -98343,14 +97787,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -98360,13 +97804,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -98381,7 +97825,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-968546653898175607848081", + "value" : "NO-619993831308626846896497", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -98392,7 +97836,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -98404,10 +97848,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", + "assetId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -98416,17 +97860,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3bf6c18f-02d0-49d6-bf85-dfefbce4e4b0", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8f3c0bea-b8b3-4d24-adf4-8b16d3201e4e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -98439,24 +97883,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -98682,7 +98108,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-968546653898175607848081", + "batteryIDDMCCode" : "NO-619993831308626846896497", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -98701,31 +98127,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04d0c240-2765-4d2c-af60-ce808a2becf9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5c551c52-58f6-4442-bb09-9e2eec3c8713", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -98740,11 +98182,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-27", + "currentStateOfHealthTimestamp" : "2016-06-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -98754,35 +98196,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "444876", + "orderNumber" : "169866", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2660", + "referencedStandard" : "DIN", + "referencedStandardID" : "3352", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -98791,30 +98233,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -98829,7 +98271,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-855241899954855664946610", + "value" : "NO-977704584411529006588832", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -98840,7 +98282,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -98852,10 +98294,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", + "assetId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -98864,17 +98306,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:85425f36-99aa-459b-918a-82a54553705e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:0b1ccc67-b1a6-4e27-9010-4fc8fa73ce6b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -98887,24 +98329,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -99130,7 +98554,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-855241899954855664946610", + "batteryIDDMCCode" : "NO-977704584411529006588832", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -99149,31 +98573,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75cf6632-198d-4245-8666-bd3a75b1eb08", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7dc3e911-86d0-4fbf-b7c1-06708297ddaf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -99188,11 +98628,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-07-16", + "currentStateOfHealthTimestamp" : "2019-12-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -99202,25 +98642,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "789866", + "orderNumber" : "477940", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -99229,8 +98669,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "3022", + "referencedStandard" : "DIN", + "referencedStandardID" : "7751", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -99239,30 +98679,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -99277,7 +98717,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-971962340442720997066820", + "value" : "NO-332150147131165825407893", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -99288,7 +98728,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -99303,7 +98743,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", + "assetId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -99312,17 +98752,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0dd31796-d329-4f79-a566-f5188ad9cc55", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4d661f4e-1c7a-4e17-85cf-a10e5e1c28f4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -99335,24 +98775,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -99578,7 +99000,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-971962340442720997066820", + "batteryIDDMCCode" : "NO-332150147131165825407893", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -99597,31 +99019,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5f37703-d9cd-4e59-b3c2-fdaf77bf7f57", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:03eaf4eb-6a81-41b0-82bb-1eea0160397f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -99636,11 +99074,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-01", + "currentStateOfHealthTimestamp" : "2020-02-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -99650,35 +99088,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "663613", + "orderNumber" : "107374", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8743", + "referencedStandard" : "IS", + "referencedStandardID" : "7851", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -99687,14 +99125,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -99704,13 +99142,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -99725,7 +99163,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-912642282493118256153758", + "value" : "NO-308925915756189788164176", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -99736,7 +99174,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -99748,10 +99186,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", + "assetId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -99760,17 +99198,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5644e790-c4b5-4a8d-960d-b6c6aa8d3b07", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:7dcdf2e3-a500-424c-bcc5-3683200ba58c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -99783,24 +99221,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -100026,7 +99446,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-912642282493118256153758", + "batteryIDDMCCode" : "NO-308925915756189788164176", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100045,31 +99465,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:105669f8-00df-440b-b4d9-8bf355fda2ca", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ac82062f-9fbb-484a-ab0b-abed55bc522b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -100084,11 +99520,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-21", + "currentStateOfHealthTimestamp" : "2020-03-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -100098,35 +99534,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "879377", + "orderNumber" : "387964", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1411", + "referencedStandard" : "JASO", + "referencedStandardID" : "9622", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -100135,30 +99571,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -100173,7 +99609,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-289487941315784350536387", + "value" : "NO-396384175246102676232025", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -100184,7 +99620,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -100199,7 +99635,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", + "assetId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -100208,17 +99644,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ff50fc9e-ef9c-4235-bd06-98727d11795e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a8f90fdb-2450-404c-ba2d-fdd872a31485", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -100231,24 +99667,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -100474,7 +99892,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-289487941315784350536387", + "batteryIDDMCCode" : "NO-396384175246102676232025", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100493,31 +99911,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d337a1b8-a554-4109-bcc2-7fbd3016b422", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c83db165-610d-4ba0-9a1f-bcaaf596362c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -100532,11 +99966,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-04-27", + "currentStateOfHealthTimestamp" : "2014-10-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -100546,25 +99980,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "696702", + "orderNumber" : "575760", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -100573,8 +100007,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3942", + "referencedStandard" : "ISO", + "referencedStandardID" : "7291", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -100583,30 +100017,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -100621,7 +100055,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-218925641782669622254168", + "value" : "NO-787709570641890998925139", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -100632,7 +100066,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -100644,10 +100078,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", + "assetId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -100656,17 +100090,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a970c990-c8f9-4636-b5d4-a3b9e3d1e2d4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:b990a187-65f3-47d7-88a7-0e748a44057f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -100679,24 +100113,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -100922,7 +100338,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-218925641782669622254168", + "batteryIDDMCCode" : "NO-787709570641890998925139", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -100941,28 +100357,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1517d3a2-f171-480a-a547-94150d13c67f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:356b795e-1e4f-487e-aeb0-db0daf1129a7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0067fa67-d9cd-4298-8e5b-b96a4ea03566", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5a6c8e8d-7a07-4649-9950-f2f6e7ac1327", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 88, + "recycledContent" : 19, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -100972,7 +100404,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 65, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -100982,7 +100414,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 29, + "recycledContent" : 65, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -100993,112 +100425,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -101106,35 +100538,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "278337", + "orderNumber" : "96675", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "9037", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9560", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -101145,12 +100577,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -101160,13 +100592,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -101181,7 +100613,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-266625803499013057727310", + "value" : "NO-813954363927946566927046", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -101192,7 +100624,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -101204,10 +100636,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", + "assetId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -101216,17 +100648,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e553e26e-de63-4ce9-ac24-6ef009c72cce", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:bd73b47e-4d3c-400f-9cec-cb39f53fd92a", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101235,17 +100667,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5f5a1239-6412-40c6-b6bb-ab1c48d605c1", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:2239c2ec-2395-4796-921c-210169cbaf9e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "childassetId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101254,17 +100686,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:81503307-6207-4ac6-952f-ee5ac97d9b37", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:242d6f2d-a2f0-4d15-9322-957e315d01e2", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "childassetId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101273,17 +100705,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:56796667-e8b6-47c8-8473-0f4405280d8c", + "ownerItemId" : "urn:uuid:9feb74a0-3d6d-42c1-8473-a221326396d0", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "childassetId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101292,17 +100724,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2a3d807a-8c0f-4724-8168-dc926a3fa9b8", + "ownerItemId" : "urn:uuid:7a31c2f3-7dba-448c-a198-ccc8a5edae79", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "childassetId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101311,17 +100743,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:94957af5-c50c-409d-89fb-4bd8cffc8855", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:87044715-abce-4848-bb51-4a298a53eb6d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "childassetId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101330,17 +100762,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4bd91ba0-653d-43cc-896f-98f1ff031526", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:6837863a-365a-402d-9230-00079e58050c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "childassetId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101349,17 +100781,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b90f6671-e863-4c61-b478-50a26cf38042", + "ownerItemId" : "urn:uuid:38889b0c-e389-48ed-881a-ec48c248b4d1", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "childassetId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101368,17 +100800,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:66137a0e-4a71-4360-b556-ef8fe211e9ae", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:b19e96ed-94da-49c7-a9d4-ea98ab2dae0e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "childassetId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101387,17 +100819,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ef675976-6da6-4e89-bc9e-3f18212bbcdf", + "ownerItemId" : "urn:uuid:189f6e0b-c048-491e-af2e-48df60cd5d7b", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "childassetId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -101406,38 +100838,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c467d5c5-dcb6-49bc-af93-6a3c1318ce79", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:25803344-cca5-40b2-9851-0e500e158be7", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "childassetId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -101663,7 +101077,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-266625803499013057727310", + "batteryIDDMCCode" : "NO-813954363927946566927046", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -101705,13 +101119,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2021-09-07", - "version" : 2.3, + "issueDate" : "2023-09-11", + "version" : 2.7, "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6781, + "diameter" : 229.6222, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -101719,22 +101133,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2021-06-07", + "placedOnMarket" : "2022-05-28", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-266625803499013057727310", + "value" : "NO-813954363927946566927046", "key" : "PartInstanceID" } ], - "gtin" : " 52245597", + "gtin" : " 80719500", "additionalCode" : [ { "name" : "TARIC", - "value" : "388682915" + "value" : "507664124" } ] }, "sources" : { @@ -101756,7 +101170,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -101785,7 +101199,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-03-30", + "date" : "2023-12-27", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -101801,9 +101215,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.25 ] + "left" : [ 1.0961 ] }, - "id" : "VX5322" + "id" : "WS8670" } ] }, "additionalData" : [ { @@ -101826,10 +101240,10 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Steel" + "name" : "Graphite" } ], "critical" : [ "Cobalt" ], "carbonFootprint" : { @@ -101841,14 +101255,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 121 + "carbonContentTotal" : 115 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AVTH" } } @@ -101861,31 +101275,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -101900,11 +101330,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-03", + "currentStateOfHealthTimestamp" : "2024-01-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -101914,25 +101344,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "720827", + "orderNumber" : "921252", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -101941,8 +101371,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4083", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6779", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -101953,28 +101383,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -101989,7 +101419,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-813531313449156434340447", + "value" : "NO-353177263076937406980534", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -102000,7 +101430,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -102012,10 +101442,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", + "assetId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -102024,17 +101454,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f46e4ec9-3791-4bcc-bda1-1b381c4c0007", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:25e197f1-e29b-46e2-805e-80eb2eb771ce", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -102047,24 +101477,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -102290,7 +101702,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-813531313449156434340447", + "batteryIDDMCCode" : "NO-353177263076937406980534", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -102309,31 +101721,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ada1fd0d-fad3-4e01-afa3-7c3f72f4eaa2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:283bd827-a5b3-4da2-8291-f5a4630cc4b8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -102348,11 +101776,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-20", + "currentStateOfHealthTimestamp" : "2022-07-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -102362,35 +101790,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "726830", + "orderNumber" : "509069", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6045", + "referencedStandard" : "AS", + "referencedStandardID" : "2948", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -102402,7 +101830,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -102422,7 +101850,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -102437,7 +101865,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-160502363712170606609249", + "value" : "NO-103687604595307515776989", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -102448,7 +101876,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -102460,10 +101888,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", + "assetId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -102472,17 +101900,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e30f53f5-d096-4b8d-b738-16f2a8c86bb7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5e6c7776-0728-4927-a0e0-794a805e9453", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -102495,24 +101923,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -102738,7 +102148,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-160502363712170606609249", + "batteryIDDMCCode" : "NO-103687604595307515776989", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -102757,31 +102167,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23c7ea17-c79b-4539-8492-b6060b08e4b6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:93b71a59-67c2-4343-b13f-13855ed479cf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -102796,11 +102222,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-03", + "currentStateOfHealthTimestamp" : "2018-06-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -102810,25 +102236,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "125411", + "orderNumber" : "291836", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -102837,8 +102263,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "9687", + "referencedStandard" : "JASO", + "referencedStandardID" : "7725", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -102854,23 +102280,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -102885,7 +102311,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-598740850606585963235307", + "value" : "NO-021417401259333589053767", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -102896,7 +102322,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -102911,7 +102337,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", + "assetId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -102920,17 +102346,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:161425eb-a656-474a-bc48-cc822e5c431e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0496054a-ea61-490d-b5fd-cd6e78e7f0d1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -102943,24 +102369,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -103186,7 +102594,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-598740850606585963235307", + "batteryIDDMCCode" : "NO-021417401259333589053767", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -103205,31 +102613,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:59c7b4c9-1bbf-459d-9fd8-09bbdb484f66", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:16d63da6-1274-41d7-adae-0f079e8a713a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -103244,11 +102668,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-29", + "currentStateOfHealthTimestamp" : "2019-01-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -103258,35 +102682,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "845221", + "orderNumber" : "13222", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "1665", + "referencedStandardID" : "5339", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -103298,7 +102722,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -103308,7 +102732,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -103333,7 +102757,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-088559388438816364444095", + "value" : "NO-379656394358398977767787", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -103344,7 +102768,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -103359,7 +102783,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", + "assetId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -103368,17 +102792,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a7852bf6-ea94-40e5-895b-bd240eee8469", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e715a876-ecd1-4d9e-b69f-1e99ed95db51", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -103391,24 +102815,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -103634,7 +103040,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-088559388438816364444095", + "batteryIDDMCCode" : "NO-379656394358398977767787", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -103653,31 +103059,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b7c9dad-820b-4a96-87fa-589c9134345b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e4fc13d9-a9a2-4735-b90a-5c5542c75155", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -103692,11 +103114,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-04-15", + "currentStateOfHealthTimestamp" : "2022-07-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -103706,35 +103128,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "433380", + "orderNumber" : "379726", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3214", + "referencedStandard" : "AS", + "referencedStandardID" : "5172", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -103743,30 +103165,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -103781,7 +103203,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-226975986307778816726774", + "value" : "NO-851795906012186517139798", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -103792,7 +103214,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -103804,10 +103226,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", + "assetId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -103816,17 +103238,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e5e314f5-4ab2-4457-84b1-51ca5d68ee87", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4603839e-223c-4373-bae8-3a9bea038a00", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -103839,24 +103261,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -104082,7 +103486,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-226975986307778816726774", + "batteryIDDMCCode" : "NO-851795906012186517139798", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -104101,31 +103505,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:98527461-16bc-4ab2-be09-76738f7ef0a1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:51371b9c-bc9b-41cc-8144-7aba635a27ba", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -104140,11 +103560,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-05", + "currentStateOfHealthTimestamp" : "2019-05-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -104154,35 +103574,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "899752", + "orderNumber" : "653224", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "5551", + "referencedStandard" : "ASME", + "referencedStandardID" : "1132", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -104193,28 +103613,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -104229,7 +103649,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-169345443003327596491868", + "value" : "NO-535857797589032688407109", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -104240,7 +103660,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -104252,10 +103672,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", + "assetId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -104264,17 +103684,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5bb5ff2c-66ce-408a-85ac-045c03bb3df7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:20ea0ace-4ffc-49d7-b6cf-14231386fc41", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -104287,24 +103707,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -104530,7 +103932,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-169345443003327596491868", + "batteryIDDMCCode" : "NO-535857797589032688407109", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -104549,31 +103951,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:92f598d1-b19c-4442-acce-141e17d97bf3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:73c265d9-d593-456c-84c5-fe33f079255a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -104588,11 +104006,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-09-08", + "currentStateOfHealthTimestamp" : "2023-10-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -104602,35 +104020,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "862255", + "orderNumber" : "908705", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "8043", + "referencedStandardID" : "6763", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -104656,13 +104074,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -104677,7 +104095,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-928993266068674740609748", + "value" : "NO-891443010663294430339387", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -104688,7 +104106,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -104703,7 +104121,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", + "assetId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -104712,17 +104130,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:408cc932-804a-4584-ab9a-1861aa32bc8a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:0ca0767e-8e4c-4951-a7f7-76481143c8a7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -104735,24 +104153,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -104978,7 +104378,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-928993266068674740609748", + "batteryIDDMCCode" : "NO-891443010663294430339387", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -104997,31 +104397,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fe802749-c65a-4e93-a9de-0a4344527211", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0729b069-ce66-436b-9189-52c3d3a1148d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -105036,11 +104452,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-07", + "currentStateOfHealthTimestamp" : "2020-07-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -105050,35 +104466,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "656036", + "orderNumber" : "361906", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "5594", + "referencedStandard" : "EN", + "referencedStandardID" : "7414", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -105087,10 +104503,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -105100,11 +104516,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -105125,7 +104541,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-522142872283988107476796", + "value" : "NO-015156631174182144932841", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -105136,7 +104552,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -105148,10 +104564,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", + "assetId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -105160,17 +104576,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9bb5d74f-5549-427f-b637-0d465dc0a7c6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:174d1934-63c2-47b0-adc5-7a491dee7656", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -105183,24 +104599,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -105426,7 +104824,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-522142872283988107476796", + "batteryIDDMCCode" : "NO-015156631174182144932841", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -105445,31 +104843,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5671007-f4f4-499e-8c0f-0bae5d8157d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9d5757ea-0898-42d6-86bb-9358fb5adcc6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -105484,11 +104898,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-09", + "currentStateOfHealthTimestamp" : "2021-02-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -105498,35 +104912,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "388692", + "orderNumber" : "818627", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5187", + "referencedStandard" : "EN", + "referencedStandardID" : "8356", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -105537,28 +104951,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -105573,7 +104987,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-824705014257620858873450", + "value" : "NO-593620449184117256671167", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -105584,7 +104998,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -105599,7 +105013,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", + "assetId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -105608,17 +105022,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1c2db2cd-b93c-4058-8b7a-b96d302f33e0", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:7312df63-05c9-48bb-b4ad-214922c1aef2", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -105631,24 +105045,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -105874,7 +105270,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-824705014257620858873450", + "batteryIDDMCCode" : "NO-593620449184117256671167", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -105893,31 +105289,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dac8ff31-53f9-4333-87f7-0729f0bd3e13", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f8d109de-117e-49a4-a054-c7a6a93031aa", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -105932,11 +105344,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-08", + "currentStateOfHealthTimestamp" : "2019-02-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -105946,14 +105358,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "711477", + "orderNumber" : "912070", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -105962,19 +105374,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "2407", + "referencedStandard" : "EN", + "referencedStandardID" : "7348", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -105983,20 +105395,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -106021,7 +105433,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-405159030052090407177399", + "value" : "NO-500869015063897903165169", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -106032,7 +105444,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -106044,10 +105456,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", + "assetId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -106056,17 +105468,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:89209001-da0e-46b3-9b2c-65fb28926cc9", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c89f0f3a-c2a5-4d37-9495-a33fa846208e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -106079,24 +105491,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -106322,7 +105716,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-405159030052090407177399", + "batteryIDDMCCode" : "NO-500869015063897903165169", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -106341,28 +105735,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6748384-1aef-4984-8b89-4430b6a6d654", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:3b2345a5-b08e-4cfb-9131-5e8414f27984", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2521ffb5-296f-4dc1-a440-9cf5ae3e7f63", + "parentItems" : [ { + "catenaXId" : "urn:uuid:2bb06827-c089-42d1-a10c-3718bb0a8d41", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 49, + "recycledContent" : 17, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -106372,7 +105782,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 23, + "recycledContent" : 57, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -106382,7 +105792,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 34, + "recycledContent" : 78, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -106393,112 +105803,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -106506,10 +105916,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "750204", + "orderNumber" : "286272", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -106518,23 +105928,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "8597", + "referencedStandard" : "AISI", + "referencedStandardID" : "1637", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -106550,23 +105960,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -106581,7 +105991,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-666462495321800521350161", + "value" : "NO-299250302066174356688340", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -106592,7 +106002,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -106604,10 +106014,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", + "assetId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -106616,17 +106026,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4637acf8-9fa4-4cb8-93f2-cc4b5e6386f1", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:28df98e0-751f-42dd-8f3c-d93ea81cf763", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106635,17 +106045,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6c31ae6b-6a71-4279-beb7-b8c8093f3767", + "ownerItemId" : "urn:uuid:32c5d6b4-87fc-47a0-9f2f-9fb9786f6d2c", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "childassetId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106654,17 +106064,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:31e21a39-3b30-4b01-ab7c-c97d1a85e0e0", + "ownerItemId" : "urn:uuid:1e46714a-af21-4a9b-ba73-a08869d5a9ba", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "childassetId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106673,17 +106083,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5f543e94-1085-4252-b326-be28aac57cff", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:61235ed7-e409-40b8-b337-cc52c4eb9942", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "childassetId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106692,17 +106102,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:075cd693-5bfb-49eb-98ea-8ef0bc986709", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:9b12e42a-702d-40fe-8cad-1c5113fe4207", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "childassetId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106711,17 +106121,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e19b6141-eb8d-4fdb-a678-f5ed47ac25d9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:fb89f9b6-4043-4451-b76f-09f011381aa7", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "childassetId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106730,17 +106140,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6352c846-ae60-4aad-95ac-060e611688e7", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:d8234cdb-adac-47c9-aec1-dd6d20873583", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "childassetId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106749,17 +106159,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:55d77876-0c90-4f80-a890-f9e42df95adb", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:66f451fc-8045-4957-aee0-979416b3c5b1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "childassetId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106768,17 +106178,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0fe5ffab-5d1d-4db2-ab12-7c11858a6169", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:5ce3020a-3143-4e0a-9a51-0b16c0725d4d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "childassetId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106787,17 +106197,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4542651d-ec6d-4dc0-9e81-03013a793abd", + "ownerItemId" : "urn:uuid:71899f8d-8bab-4260-975d-8bbe592c256d", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "childassetId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -106806,38 +106216,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:40c9674b-f1fd-4b6a-89d2-ead5403c6883", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:6ae6283f-c7ea-46d4-8eea-ec096e7bc584", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "childassetId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -107063,7 +106455,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-666462495321800521350161", + "batteryIDDMCCode" : "NO-299250302066174356688340", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -107105,13 +106497,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-12-26", - "version" : 2.6, - "status" : "Expired" + "issueDate" : "2022-03-05", + "version" : 1.4, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.68019999999999, + "diameter" : 229.67159999999998, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -107119,22 +106511,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2023-12-12", + "placedOnMarket" : "2020-02-21", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-666462495321800521350161", + "value" : "NO-299250302066174356688340", "key" : "PartInstanceID" } ], - "gtin" : " 80816507", + "gtin" : " 17602822", "additionalCode" : [ { "name" : "TARIC", - "value" : "338960894" + "value" : "243040827" } ] }, "sources" : { @@ -107156,7 +106548,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -107185,7 +106577,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-01-28", + "date" : "2022-04-03", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -107201,9 +106593,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 8.8569 ] + "left" : [ 5.6376 ] }, - "id" : "TV8227" + "id" : "JQ1307" } ] }, "additionalData" : [ { @@ -107229,9 +106621,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "UV Varnish" + "name" : "Sealant" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Manganese" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -107241,14 +106633,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 120 + "carbonContentTotal" : 113 }, "state" : "first life" }, "operation" : { "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AVTH" } } @@ -107261,31 +106653,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -107300,11 +106708,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-21", + "currentStateOfHealthTimestamp" : "2017-01-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -107314,19 +106722,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "440587", + "orderNumber" : "527796", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -107337,12 +106745,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1784", + "referencedStandard" : "JASO", + "referencedStandardID" : "5015", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -107353,22 +106761,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -107389,7 +106797,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-243431359981652793976124", + "value" : "NO-761118606872897346517498", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -107400,7 +106808,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -107415,7 +106823,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", + "assetId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -107424,17 +106832,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1b6966e0-303a-4f61-9fee-c98a94297ed5", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:80c9a7af-ee8a-4cc2-b97d-4959b91cea0d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -107447,24 +106855,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -107690,7 +107080,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-243431359981652793976124", + "batteryIDDMCCode" : "NO-761118606872897346517498", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -107709,31 +107099,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b84f41bd-c2f6-4b74-91e6-2c1bc9bade9c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9a50ae53-787b-44c9-ba79-7c8e145edf7f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -107748,11 +107154,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-12", + "currentStateOfHealthTimestamp" : "2024-01-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -107762,35 +107168,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "804866", + "orderNumber" : "532291", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8876", + "referencedStandard" : "GB", + "referencedStandardID" : "3736", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -107801,12 +107207,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -107816,7 +107222,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -107837,7 +107243,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-023002600992356013537416", + "value" : "NO-874321513761335588378709", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -107848,7 +107254,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -107863,7 +107269,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", + "assetId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -107872,17 +107278,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c29ae841-3b6e-47b9-a5fc-65f9f7edd927", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:89618f3e-cd25-4d64-9973-cf95b9e06d4e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -107895,24 +107301,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -108138,7 +107526,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-023002600992356013537416", + "batteryIDDMCCode" : "NO-874321513761335588378709", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -108157,31 +107545,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b5ed46d9-a41b-4780-85c9-1eb494657ed7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1573a073-3934-4f46-bc18-0f5ff203a0dd", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -108196,11 +107600,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-24", + "currentStateOfHealthTimestamp" : "2018-06-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -108210,35 +107614,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "941283", + "orderNumber" : "905205", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9395", + "referencedStandard" : "DIN", + "referencedStandardID" : "8613", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -108247,30 +107651,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -108285,7 +107689,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-723900595323676180970239", + "value" : "NO-342236709136076823061034", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -108296,7 +107700,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -108308,10 +107712,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", + "assetId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -108320,17 +107724,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7d921a84-ce8b-42ef-b6c6-4e4c8abea760", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a3faf3ee-6aa0-455d-b18f-10f01439f36d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -108343,24 +107747,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -108586,7 +107972,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-723900595323676180970239", + "batteryIDDMCCode" : "NO-342236709136076823061034", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -108605,31 +107991,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0000a108-14db-4d42-8c7e-323cfefe2946", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bab885c-2578-4335-91a7-0f686c7ffc7a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -108644,11 +108046,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-07-16", + "currentStateOfHealthTimestamp" : "2022-07-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -108658,25 +108060,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "201539", + "orderNumber" : "449030", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -108685,8 +108087,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "3201", + "referencedStandard" : "JASO", + "referencedStandardID" : "5615", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -108695,10 +108097,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -108708,17 +108110,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -108733,7 +108135,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-852995337686482639469224", + "value" : "NO-938212604599539570895309", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -108744,7 +108146,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -108756,10 +108158,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", + "assetId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -108768,17 +108170,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c69859ac-dbd1-4d65-97c4-8318f78d36a4", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:2bc05f02-0b14-471f-a693-0fbf51cc5fa1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -108791,24 +108193,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -109034,7 +108418,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-852995337686482639469224", + "batteryIDDMCCode" : "NO-938212604599539570895309", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -109053,31 +108437,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d9b4bb1-9541-461d-aeb4-d3ff94a37dbf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:432ea93b-67c9-41bd-b427-23cd7c9a4047", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -109092,11 +108492,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-24", + "currentStateOfHealthTimestamp" : "2022-01-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -109106,35 +108506,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "608424", + "orderNumber" : "32472", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4955", + "referencedStandard" : "ISO", + "referencedStandardID" : "1501", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -109145,28 +108545,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -109181,7 +108581,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-864271430120841368141725", + "value" : "NO-028690566422024909405570", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -109192,7 +108592,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -109204,10 +108604,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", + "assetId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -109216,17 +108616,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7bd13c22-ca20-4588-8251-28386e9c68a6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8354e237-59a1-45f4-975b-052fdcceba81", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -109239,24 +108639,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -109482,7 +108864,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-864271430120841368141725", + "batteryIDDMCCode" : "NO-028690566422024909405570", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -109501,31 +108883,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6de63abf-a5f5-40ca-815f-ede651e6c96f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:419f01ac-042e-4238-9f5b-46942a8b814f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -109540,11 +108938,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-25", + "currentStateOfHealthTimestamp" : "2014-11-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -109554,35 +108952,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "83839", + "orderNumber" : "114174", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2658", + "referencedStandard" : "JASO", + "referencedStandardID" : "1929", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -109591,30 +108989,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -109629,7 +109027,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-493965559315963173200149", + "value" : "NO-443620290801454528608838", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -109640,7 +109038,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -109652,10 +109050,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", + "assetId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -109664,17 +109062,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ade79d38-7a36-44c7-80a8-fdc08a7cb8fb", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:86d82017-eed4-4520-becb-f60e3284c433", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -109687,24 +109085,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -109930,7 +109310,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-493965559315963173200149", + "batteryIDDMCCode" : "NO-443620290801454528608838", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -109949,31 +109329,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e361f5ca-eca9-429c-bb71-27273d308c61", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1471fa1a-87d8-48cf-820e-4ff54fb96219", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -109988,11 +109384,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-06-05", + "currentStateOfHealthTimestamp" : "2019-09-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -110002,35 +109398,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "391038", + "orderNumber" : "145581", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "4977", + "referencedStandard" : "IS", + "referencedStandardID" : "6941", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -110041,18 +109437,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -110062,7 +109458,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -110077,7 +109473,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-631945854224183782802522", + "value" : "NO-373530199750331239499694", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -110088,7 +109484,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -110100,10 +109496,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", + "assetId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -110112,17 +109508,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0f5748c3-c0bd-46e4-9832-db3120d291c8", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:da5cb838-5d88-48ed-a678-eb34b4991d6f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -110135,24 +109531,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -110378,7 +109756,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-631945854224183782802522", + "batteryIDDMCCode" : "NO-373530199750331239499694", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -110397,31 +109775,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d21b5bab-2128-49a5-8589-66bf6a80c2d1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:87828bcf-070d-4559-ac97-fbdc539a3f24", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -110436,11 +109830,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-26", + "currentStateOfHealthTimestamp" : "2017-12-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-17", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -110450,25 +109844,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "64252", + "orderNumber" : "674779", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -110477,8 +109871,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "7550", + "referencedStandard" : "AS", + "referencedStandardID" : "6910", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -110489,28 +109883,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -110525,7 +109919,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-528164755627618925093346", + "value" : "NO-000884847473256397893511", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -110536,7 +109930,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -110548,10 +109942,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", + "assetId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -110560,17 +109954,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ab698cc6-6b42-41ba-97ae-50ea78e7078a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5370b11c-3461-492b-bdc6-04d57a429ac5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -110583,24 +109977,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -110826,7 +110202,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-528164755627618925093346", + "batteryIDDMCCode" : "NO-000884847473256397893511", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -110845,31 +110221,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c63bd7d6-d171-4b03-a4b3-435be5e653a9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4a82eafc-eb4e-4e4a-aa18-1eb5bbf2de6f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -110884,11 +110276,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-10-31", + "currentStateOfHealthTimestamp" : "2022-02-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -110898,19 +110290,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "182499", + "orderNumber" : "249351", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -110921,12 +110313,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "4222", + "referencedStandardID" : "4966", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -110938,21 +110330,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -110973,7 +110365,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-080946431019630794165586", + "value" : "NO-872284497289268828850972", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -110984,7 +110376,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -110999,7 +110391,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", + "assetId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -111008,17 +110400,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ec903206-ddb7-4c2c-8b6c-abd3cd3f419b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:cc309953-fc79-46f4-b329-eeed587589a5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -111031,24 +110423,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -111274,7 +110648,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-080946431019630794165586", + "batteryIDDMCCode" : "NO-872284497289268828850972", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -111293,31 +110667,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:10adefe2-635e-4579-b461-83e43bafff18", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4e69da75-7103-4e5d-8a59-6405877887d5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -111332,11 +110722,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-15", + "currentStateOfHealthTimestamp" : "2014-04-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -111346,35 +110736,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "716893", + "orderNumber" : "583158", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6717", + "referencedStandard" : "AISI", + "referencedStandardID" : "1873", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -111385,28 +110775,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -111421,7 +110811,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-562616991863372023913717", + "value" : "NO-184779682912162798050449", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -111432,7 +110822,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -111444,10 +110834,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", + "assetId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -111456,17 +110846,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7813e8b3-9f24-4c98-be61-804592f09faf", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:672fff05-1250-4a3a-8920-829edf77de8d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -111479,24 +110869,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -111722,7 +111094,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-562616991863372023913717", + "batteryIDDMCCode" : "NO-184779682912162798050449", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -111741,28 +111113,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:801a616a-1909-4b34-bc15-7faf81450df8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:11bbe0cc-3128-4f76-b299-b56dad4a591d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1bafd705-badf-400b-b69d-92277a782aa5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ed91d240-93cc-4408-a0da-3aaa79baf700", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 80, + "recycledContent" : 7, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -111772,7 +111160,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 50, + "recycledContent" : 21, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -111793,112 +111181,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -111906,35 +111294,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "296324", + "orderNumber" : "357289", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5460", + "referencedStandard" : "ISO", + "referencedStandardID" : "3529", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -111945,28 +111333,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -111981,7 +111369,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-867046467379395919343188", + "value" : "NO-583642165673004734306920", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -111992,7 +111380,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -112004,10 +111392,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", + "assetId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -112016,17 +111404,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9b3502fb-4137-4569-806f-9c91d4a544da", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:61092df9-ab62-42a7-b2c5-7ba113699f77", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112035,17 +111423,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:185a4fcf-7340-48d8-b32c-e34a1ac7ff7b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:48ffc285-94a1-4081-aaab-908817c76ee4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "childassetId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112054,17 +111442,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fab74cea-2b28-448a-82f4-cf8a68018087", + "ownerItemId" : "urn:uuid:b57bf999-fa01-4689-ba33-6c9f7145b567", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "childassetId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112073,17 +111461,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2bd560c5-6f6a-4897-91ef-8e12cbe69f46", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:4fc52401-3086-4014-a0c5-d2083b9c2e4b", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "childassetId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112092,17 +111480,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f9420cbc-700e-47b6-86f5-0e09f6e21687", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:7971dd60-ee90-44a1-84ea-a1c487ddeac9", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "childassetId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112111,17 +111499,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:29556c31-a6e0-4c19-b11d-bde92fb31779", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:678a579f-9474-4fd4-98ee-d8e743553cd4", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "childassetId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112130,17 +111518,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fcd11560-75ec-459b-ad76-601049cfacaf", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c5027fd2-d557-42a6-b459-604db7b73d40", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "childassetId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112149,17 +111537,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e09d57d2-0c2e-42a9-b695-e3a5191f082b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:05790637-0c49-464d-b44c-efac96349c83", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "childassetId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112168,17 +111556,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4b5c89ee-5d84-4331-b4ef-15f04a727aca", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:98e090e7-a039-42c5-a291-02d25b82469c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "childassetId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112187,17 +111575,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8f362f14-95d6-4b17-8f06-99f97549d351", + "ownerItemId" : "urn:uuid:e77c1bd9-f5c3-4605-9ec3-8bfbe6537c19", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "childassetId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -112206,38 +111594,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c5f07ed3-9c8f-4f31-b7c0-58297f97f30f", + "ownerItemId" : "urn:uuid:aea3a4d4-c6cb-4018-b88c-087bb9f23267", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "childassetId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -112463,7 +111833,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-867046467379395919343188", + "batteryIDDMCCode" : "NO-583642165673004734306920", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -112505,13 +111875,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-12-27", - "version" : 2, - "status" : "Invalid" + "issueDate" : "2023-10-03", + "version" : 2.9, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6324, + "diameter" : 229.6795, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -112519,22 +111889,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 15 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2022-11-06", + "placedOnMarket" : "2022-04-19", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-867046467379395919343188", + "value" : "NO-583642165673004734306920", "key" : "PartInstanceID" } ], - "gtin" : " 78885933", + "gtin" : " 87359242", "additionalCode" : [ { "name" : "TARIC", - "value" : "394264016" + "value" : "764137838" } ] }, "sources" : { @@ -112556,7 +111926,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -112585,7 +111955,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-02", + "date" : "2023-12-22", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -112601,9 +111971,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.9146 ] + "left" : [ 8.2594 ] }, - "id" : "FO5164" + "id" : "WQ7259" } ] }, "additionalData" : [ { @@ -112629,9 +111999,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Cobalt" } ], - "critical" : [ "Cobalt" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -112641,14 +112011,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 111 + "carbonContentTotal" : 113 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003B2OM", "manufacturerId" : "BPNL00000003AVTH" } } @@ -112661,31 +112031,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -112700,7 +112086,7 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-06-16", + "currentStateOfHealthTimestamp" : "2020-01-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { @@ -112714,10 +112100,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "486113", + "orderNumber" : "247211", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -112726,13 +112112,13 @@ "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -112742,7 +112128,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "AS", - "referencedStandardID" : "9750", + "referencedStandardID" : "7986", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -112751,30 +112137,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -112789,7 +112175,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-527219620679419431905191", + "value" : "NO-584589060546938156743639", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -112800,7 +112186,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -112812,10 +112198,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", + "assetId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -112824,17 +112210,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9f76b956-94c1-40af-bc0b-f775f5768aac", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1784daba-446c-4b2d-9b18-28ea860f71f4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -112847,24 +112233,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -113090,7 +112458,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-527219620679419431905191", + "batteryIDDMCCode" : "NO-584589060546938156743639", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -113109,31 +112477,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c883f22f-985d-403d-ac87-945615b93647", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d031d403-c219-4ce4-842b-6defe9145812", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -113148,11 +112532,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-22", + "currentStateOfHealthTimestamp" : "2015-12-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -113162,35 +112546,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "576741", + "orderNumber" : "890820", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "7917", + "referencedStandard" : "EN", + "referencedStandardID" : "8283", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -113206,23 +112590,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -113237,7 +112621,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-617791177853609557272147", + "value" : "NO-097656155974844166092025", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -113248,7 +112632,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -113263,7 +112647,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", + "assetId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -113272,17 +112656,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e01f7173-86fb-4daa-b205-a9b56a07da2d", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:05ccab85-fd03-4cd2-a9bc-2ee63a052a6f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -113295,24 +112679,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -113538,7 +112904,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-617791177853609557272147", + "batteryIDDMCCode" : "NO-097656155974844166092025", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -113557,31 +112923,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:91a7fc16-119e-435d-908f-3b5a9a5bfe4a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7926ba88-d8ed-40e3-92e5-7e487370e2a0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -113596,11 +112978,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-02", + "currentStateOfHealthTimestamp" : "2017-05-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -113610,25 +112992,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "250089", + "orderNumber" : "50931", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -113637,8 +113019,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5129", + "referencedStandard" : "AS", + "referencedStandardID" : "1538", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -113650,21 +113032,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -113685,7 +113067,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-431960051195561035016450", + "value" : "NO-906720475287942484971848", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -113696,7 +113078,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -113708,10 +113090,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", + "assetId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -113720,17 +113102,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6a5ac78c-93ff-475d-8d4f-73bdd745dfb7", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:dced43a7-05a2-4c7f-91aa-e9f04fc4a723", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -113743,24 +113125,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -113986,7 +113350,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-431960051195561035016450", + "batteryIDDMCCode" : "NO-906720475287942484971848", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114005,31 +113369,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b1481ed3-4846-41fd-be22-32cacd17c2ea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:563ff16e-f30c-4f80-9f4a-8d05c7bf24e7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -114044,11 +113424,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-03-09", + "currentStateOfHealthTimestamp" : "2018-12-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114058,25 +113438,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "57892", + "orderNumber" : "34849", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -114085,8 +113465,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5839", + "referencedStandard" : "AISI", + "referencedStandardID" : "2147", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -114097,28 +113477,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -114133,7 +113513,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-642498843554646731896600", + "value" : "NO-864890239944843406247402", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -114144,7 +113524,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -114156,10 +113536,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", + "assetId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -114168,17 +113548,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fde1fc3c-d687-40a6-ab10-5330a445a477", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8ea2a26f-8756-4f1e-9186-2a9e70afa77d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -114191,24 +113571,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -114434,7 +113796,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-642498843554646731896600", + "batteryIDDMCCode" : "NO-864890239944843406247402", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114453,31 +113815,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:96265701-b16d-4c52-8b3a-932ccb3513b9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:346e40e4-78ba-465b-b648-902cc7ddf282", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -114492,11 +113870,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-11", + "currentStateOfHealthTimestamp" : "2024-02-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114506,35 +113884,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "839129", + "orderNumber" : "195073", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4989", + "referencedStandard" : "GB", + "referencedStandardID" : "8647", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -114546,27 +113924,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -114581,7 +113959,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-475634520880851519671204", + "value" : "NO-420096744871300139960196", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -114592,7 +113970,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -114604,10 +113982,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", + "assetId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -114616,17 +113994,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d92d17c4-9867-40c1-aff8-ccf6777effe7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:96c560b0-8743-42f7-804b-c248e1c12245", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -114639,24 +114017,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -114882,7 +114242,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-475634520880851519671204", + "batteryIDDMCCode" : "NO-420096744871300139960196", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -114901,31 +114261,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:291fb007-f9ef-4c6a-948b-e2f3d157e176", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b3df0c0f-a241-408c-bdc7-126627acc03a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -114940,11 +114316,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-01-08", + "currentStateOfHealthTimestamp" : "2017-05-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -114954,35 +114330,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "73823", + "orderNumber" : "338099", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AS", - "referencedStandardID" : "4218", + "referencedStandardID" : "2314", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -114993,22 +114369,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -115029,7 +114405,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-964473612808435756536485", + "value" : "NO-775017670642304020030227", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -115040,7 +114416,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -115052,10 +114428,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", + "assetId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -115064,17 +114440,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a97420bd-45e7-4cc7-9f60-c990732828b9", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:44155d2e-ced2-422d-a04e-8ce39337306b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -115087,24 +114463,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -115330,7 +114688,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-964473612808435756536485", + "batteryIDDMCCode" : "NO-775017670642304020030227", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -115349,31 +114707,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8a95f447-f466-45b6-90db-d9a2646fef17", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:66524416-85d4-4f02-915e-c70c0d5bb542", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -115388,11 +114762,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-02-03", + "currentStateOfHealthTimestamp" : "2020-12-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -115402,25 +114776,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "530545", + "orderNumber" : "807100", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -115429,8 +114803,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1441", + "referencedStandard" : "DIN", + "referencedStandardID" : "8492", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -115446,7 +114820,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -115456,13 +114830,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -115477,7 +114851,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-389701329773588536459130", + "value" : "NO-693651648079618727347715", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -115488,7 +114862,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -115500,10 +114874,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", + "assetId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -115512,17 +114886,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:28cdce65-60ca-44f7-9a05-3a292fc1e45a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:35f4e506-a0df-4124-9918-baaf46c574aa", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -115535,24 +114909,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -115778,7 +115134,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-389701329773588536459130", + "batteryIDDMCCode" : "NO-693651648079618727347715", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -115797,31 +115153,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:93e26aaf-24b0-4ea9-9642-1d96241b800c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a2bf8f8c-ea8f-457a-b2f2-71e9de49932d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -115836,11 +115208,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-03-04", + "currentStateOfHealthTimestamp" : "2014-08-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -115850,35 +115222,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "208638", + "orderNumber" : "872635", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7389", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1816", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -115890,11 +115262,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -115904,13 +115276,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -115925,7 +115297,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-265855892739828724648190", + "value" : "NO-828741902571921103739667", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -115936,7 +115308,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -115948,10 +115320,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", + "assetId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -115960,17 +115332,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:896cf53b-e577-4954-b7e1-06e33124c6dd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:98ff8e5d-8a1c-4545-9c90-31054fbea6f4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -115983,24 +115355,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -116226,7 +115580,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-265855892739828724648190", + "batteryIDDMCCode" : "NO-828741902571921103739667", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -116245,31 +115599,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cc9d7df2-ecbb-4b6e-92d2-23f6771cad5f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c1caf694-4fec-4c5a-8058-ba508450cbf0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -116284,11 +115654,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-13", + "currentStateOfHealthTimestamp" : "2021-02-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -116298,35 +115668,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "680948", + "orderNumber" : "590876", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "2281", + "referencedStandardID" : "2752", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -116335,24 +115705,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -116373,7 +115743,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-175875555612811823933211", + "value" : "NO-591321746588861481641977", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -116384,7 +115754,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -116399,7 +115769,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", + "assetId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -116408,17 +115778,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8429cf4e-279a-4d09-97a6-8e28ac4f2ee1", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:322b83f1-c4b1-4e4d-b683-605244972787", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -116431,24 +115801,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -116674,7 +116026,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-175875555612811823933211", + "batteryIDDMCCode" : "NO-591321746588861481641977", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -116693,31 +116045,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:04163e4e-f2be-4a37-882f-9ce0f14557d3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef7c034d-c083-4da5-8278-e553518354e8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -116732,11 +116100,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-25", + "currentStateOfHealthTimestamp" : "2016-09-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -116746,35 +116114,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "160595", + "orderNumber" : "353964", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2208", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3644", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -116783,10 +116151,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -116796,11 +116164,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -116821,7 +116189,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-903660072999464921495584", + "value" : "NO-976405785842786943411308", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -116832,7 +116200,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -116847,7 +116215,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", + "assetId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -116856,17 +116224,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4832e797-d414-4c54-a3c5-d82dcab59894", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bd6aa846-8fc4-42c5-9dbc-6112397485c1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -116879,24 +116247,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -117122,7 +116472,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-903660072999464921495584", + "batteryIDDMCCode" : "NO-976405785842786943411308", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -117141,28 +116491,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2e50a59e-9c24-4854-a5ab-3f1c9b581290", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:997a01f7-098d-4d66-a18b-872cc3f026d3", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:202d3236-9f24-49c2-aeca-03dc524d7aca", + "parentItems" : [ { + "catenaXId" : "urn:uuid:04f15d29-0ebd-4287-b281-dcdb2f92ec3e", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 57, + "recycledContent" : 50, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -117172,7 +116538,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 43, + "recycledContent" : 46, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -117182,7 +116548,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 83, + "recycledContent" : 75, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -117193,112 +116559,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -117306,35 +116672,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "38931", + "orderNumber" : "625618", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "IS", - "referencedStandardID" : "8142", + "referencedStandardID" : "6656", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -117345,8 +116711,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -117356,17 +116722,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -117381,7 +116747,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-791731492084972438194145", + "value" : "NO-977339448342507377280022", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -117392,7 +116758,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -117404,10 +116770,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", + "assetId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { @@ -117416,17 +116782,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:68bddd21-7586-4158-95c2-9c89a88e558c", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:99924e77-ce1b-4e76-bcb1-660f4a13b4f8", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117435,17 +116801,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:61022aa8-8094-4f27-9c40-5cdd19dddcac", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:f03f204a-a0ad-467f-a4e0-79704ffe8132", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "childassetId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117454,17 +116820,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4357a21d-09ee-4218-9db8-234ca45a8daf", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:835b0483-3868-4886-9b9c-06b048ec3c82", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "childassetId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117473,17 +116839,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ec38531c-4f82-4fb2-a8fa-d3d4912a9f63", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:66066b54-9051-43bc-831a-226f9c3f86b1", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "childassetId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117492,17 +116858,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:51530b79-d709-43f7-a481-b30b2d75c6a6", + "ownerItemId" : "urn:uuid:077ec265-60d4-4e30-af2b-571687ccbf32", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "childassetId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117511,17 +116877,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:708f39f2-a4fd-4c52-957e-136d8fffd699", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:051c27f9-ec03-4eb4-ad50-56503c1d2358", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "childassetId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117530,17 +116896,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6ee407d0-250a-45d6-892e-26068c3a8362", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:b99e5ddd-b0ce-4fe7-b097-172950372af0", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "childassetId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117549,17 +116915,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:47c7d8b7-027a-4164-a997-3dbeba5a50e1", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:fc354d99-903a-4b21-8f26-a72cc5e91c9b", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "childassetId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117568,17 +116934,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2b65d05f-3c67-4001-a36e-ff7766fb146a", + "ownerItemId" : "urn:uuid:6eae28fe-a021-4bf2-af3a-589636e7b8fc", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "childassetId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117587,17 +116953,17 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1c117fd9-628e-482f-85ee-9fbe4eb43211", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:37741788-398b-43c6-9cb0-897f3769cf66", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "childassetId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -117606,38 +116972,20 @@ "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:475bd658-600d-41b1-a20b-4e110cba6118", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bf59c109-169d-45b7-b7dd-37fb475b735e", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "childassetId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AVTH:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -117863,7 +117211,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-791731492084972438194145", + "batteryIDDMCCode" : "NO-977339448342507377280022", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -117905,13 +117253,13 @@ "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2024-01-24", - "version" : 2.7, + "issueDate" : "2023-04-19", + "version" : 2.5, "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6739, + "diameter" : 229.66819999999998, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -117923,18 +117271,18 @@ } }, "commercial" : { - "placedOnMarket" : "2023-12-28", + "placedOnMarket" : "2022-03-10", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-791731492084972438194145", + "value" : "NO-977339448342507377280022", "key" : "PartInstanceID" } ], - "gtin" : " 58660936", + "gtin" : " 20505536", "additionalCode" : [ { "name" : "TARIC", - "value" : "971564677" + "value" : "742277870" } ] }, "sources" : { @@ -117956,7 +117304,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -117985,7 +117333,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-26", + "date" : "2023-10-03", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -118001,9 +117349,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.2396 ] + "left" : [ 8.188 ] }, - "id" : "VD3168" + "id" : "KS2646" } ] }, "additionalData" : [ { @@ -118026,10 +117374,10 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Cobalt" + "name" : "UV Varnish" } ], "critical" : [ "Cobalt" ], "carbonFootprint" : { @@ -118041,14 +117389,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 103 + "carbonContentTotal" : 108 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AVTH" } } @@ -118061,31 +117409,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "customers" : [ { - "businessPartner" : "BPNL00000003AVTH", - "parentItems" : [ { - "catenaXId" : "urn:uuid:1639eb63-0a2b-48b2-94fd-69bee6b0dedc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e5434950-741e-4b42-a0bb-5e89e7857d1d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -118100,11 +117464,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-11-01", + "currentStateOfHealthTimestamp" : "2022-06-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-14", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -118114,35 +117478,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "273853", + "orderNumber" : "101822", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "4715", + "referencedStandardID" : "5231", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -118151,10 +117515,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -118168,7 +117532,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -118189,7 +117553,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-045528680871181123527870", + "value" : "NO-649686248132682387519763", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -118200,7 +117564,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -118212,10 +117576,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", + "assetId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -118224,17 +117588,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3aa2a2cf-30c1-41dd-ab51-4d55b3c37850", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:deb337a4-9774-48f3-91b2-8e32eeb8891f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -118247,24 +117611,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -118490,7 +117836,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-045528680871181123527870", + "batteryIDDMCCode" : "NO-649686248132682387519763", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -118509,31 +117855,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a9e47a50-4fb8-4ac2-9473-ed9e10f5d67c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9139804-29eb-4fa3-a6ec-7bef29cb04e9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -118548,11 +117910,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-11-06", + "currentStateOfHealthTimestamp" : "2015-02-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -118562,35 +117924,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "712590", + "orderNumber" : "756091", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 8 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7917", + "referencedStandard" : "IS", + "referencedStandardID" : "6293", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -118606,23 +117968,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -118637,7 +117999,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-432762596534102360005521", + "value" : "NO-932126621028416918869890", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -118648,7 +118010,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -118660,10 +118022,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", + "assetId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -118672,17 +118034,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a38f1235-949a-4422-ad21-606efa26af11", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6505867a-7ff3-43bc-8625-369963b7de7d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -118695,24 +118057,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -118938,7 +118282,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-432762596534102360005521", + "batteryIDDMCCode" : "NO-932126621028416918869890", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -118957,31 +118301,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:26c9b16c-4eae-4d7f-bacd-c62461230719", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e680cf49-7668-47a2-9935-10c7d10ed841", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -118996,11 +118356,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-29", + "currentStateOfHealthTimestamp" : "2015-12-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -119010,35 +118370,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "416054", + "orderNumber" : "890129", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JIS", - "referencedStandardID" : "6133", + "referencedStandardID" : "7095", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -119047,24 +118407,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -119085,7 +118445,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-773784648231452499786492", + "value" : "NO-265842576666662883131948", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -119096,7 +118456,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -119108,10 +118468,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", + "assetId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -119120,17 +118480,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:08eb587a-3b9a-42e1-84d0-feb6fa9f3509", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d0b87908-7a68-458b-abb1-cc8dccbb7c47", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -119143,24 +118503,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -119386,7 +118728,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-773784648231452499786492", + "batteryIDDMCCode" : "NO-265842576666662883131948", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -119405,31 +118747,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73214a08-0595-404e-aa8b-65d52138e6eb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c7687b0e-924f-46bc-8828-25dd4ae259bf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -119444,11 +118802,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-15", + "currentStateOfHealthTimestamp" : "2020-05-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -119458,35 +118816,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "203822", + "orderNumber" : "690979", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1349", + "referencedStandard" : "JIS", + "referencedStandardID" : "9628", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -119495,10 +118853,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -119508,17 +118866,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -119533,7 +118891,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-931089020852644605885160", + "value" : "NO-408768191108077260382795", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -119544,7 +118902,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -119559,7 +118917,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", + "assetId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -119568,17 +118926,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0726b2ee-7b3c-4508-a61f-5f032a3dfc00", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:57b26378-3a89-4515-8f7e-4171cd6bcaa0", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -119591,24 +118949,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -119834,7 +119174,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-931089020852644605885160", + "batteryIDDMCCode" : "NO-408768191108077260382795", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -119853,31 +119193,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:74e1fd8f-a202-4415-b582-4dcf3682c2d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:37d38939-c388-4787-8ee8-58118cbc139b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -119892,11 +119248,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-07-09", + "currentStateOfHealthTimestamp" : "2022-02-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -119906,35 +119262,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "51836", + "orderNumber" : "546714", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2864", + "referencedStandard" : "AISI", + "referencedStandardID" : "9682", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -119946,7 +119302,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -119956,7 +119312,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -119966,7 +119322,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -119981,7 +119337,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-052559054522519128170672", + "value" : "NO-345960433403675209960230", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -119992,7 +119348,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -120004,10 +119360,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", + "assetId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -120016,17 +119372,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c57cc6c4-e720-4aa8-a1e1-fab106760396", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9f812e94-2647-4381-98d9-01f5728a0b6c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -120039,24 +119395,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -120282,7 +119620,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-052559054522519128170672", + "batteryIDDMCCode" : "NO-345960433403675209960230", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -120301,31 +119639,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9739e35d-affa-47ab-97e4-89f93099e4f9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e675f5ea-ddf6-4cab-83be-be50060425d0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -120340,11 +119694,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-01", + "currentStateOfHealthTimestamp" : "2019-06-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -120354,35 +119708,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "702518", + "orderNumber" : "966631", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9016", + "referencedStandard" : "AS", + "referencedStandardID" : "4531", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -120391,14 +119745,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -120408,13 +119762,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -120429,7 +119783,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-069888996325895048192020", + "value" : "NO-427371659239686645615774", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -120440,7 +119794,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -120452,10 +119806,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", + "assetId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -120464,17 +119818,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4fecbf7e-15ce-407e-abb3-ea9279febdb7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:951c6ae4-d855-4a05-9bef-ddce09bb2869", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -120487,24 +119841,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -120730,7 +120066,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-069888996325895048192020", + "batteryIDDMCCode" : "NO-427371659239686645615774", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -120749,31 +120085,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:00e52eea-08f2-43a7-aea5-863d67ef4aee", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4779217b-2be4-4eb7-9e86-956c4114f6fb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -120788,11 +120140,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-10-11", + "currentStateOfHealthTimestamp" : "2016-08-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -120802,23 +120154,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "40243", + "orderNumber" : "934316", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -120829,8 +120181,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7525", + "referencedStandard" : "AISI", + "referencedStandardID" : "1020", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -120839,30 +120191,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -120877,7 +120229,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-726411710200643729429321", + "value" : "NO-657784086680049310074224", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -120888,7 +120240,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -120900,10 +120252,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", + "assetId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -120912,17 +120264,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:61a2e795-3787-4bd2-82be-f3b2a77bbfeb", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:685b60eb-1d97-4bf1-b22b-cc265a9c49c3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -120935,24 +120287,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -121178,7 +120512,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-726411710200643729429321", + "batteryIDDMCCode" : "NO-657784086680049310074224", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -121197,31 +120531,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b2c5ccbc-ea01-4b9f-9c28-0e65215e7900", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bf7d6151-235c-445f-8037-aa5897c4ea1b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -121236,11 +120586,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-03-25", + "currentStateOfHealthTimestamp" : "2019-08-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -121250,23 +120600,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "363896", + "orderNumber" : "648610", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -121277,8 +120627,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "6846", + "referencedStandard" : "ASME", + "referencedStandardID" : "4674", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -121287,20 +120637,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -121310,7 +120660,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -121325,7 +120675,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-778428442049642183418940", + "value" : "NO-985917467897435611472151", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -121336,7 +120686,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -121351,7 +120701,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", + "assetId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -121360,17 +120710,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9097c151-5813-4b55-b756-8aabc22824eb", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:dd4ce224-0297-45c5-ace5-33fb18d5572f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -121383,24 +120733,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -121626,7 +120958,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-778428442049642183418940", + "batteryIDDMCCode" : "NO-985917467897435611472151", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -121645,31 +120977,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1398cd56-682b-4c94-93ac-4807f9bfca41", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:84cba51a-9a25-46a6-b6af-8605d42470fc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -121684,11 +121032,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-10", + "currentStateOfHealthTimestamp" : "2020-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-22", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -121698,25 +121046,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "926923", + "orderNumber" : "90799", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -121725,8 +121073,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "7022", + "referencedStandard" : "AS", + "referencedStandardID" : "9045", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -121735,30 +121083,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -121773,7 +121121,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-876479343707965086240559", + "value" : "NO-402366524753095150071304", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -121784,7 +121132,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -121796,10 +121144,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", + "assetId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -121808,17 +121156,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5cf0de64-f33c-4657-8529-4d161c907012", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:1dd3496c-4475-4cc7-8c2b-13015afb9534", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -121831,24 +121179,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -122074,7 +121404,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-876479343707965086240559", + "batteryIDDMCCode" : "NO-402366524753095150071304", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -122093,31 +121423,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9f1bd7c2-3e0a-495d-a2cb-71529f8f18eb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8eba4762-f201-4e56-bdb2-9ce091063a34", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -122132,11 +121478,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-16", + "currentStateOfHealthTimestamp" : "2018-10-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -122146,35 +121492,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "623430", + "orderNumber" : "965940", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "4536", + "referencedStandard" : "AS", + "referencedStandardID" : "5867", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -122185,12 +121531,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -122200,13 +121546,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -122221,7 +121567,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-724113540825337678971966", + "value" : "NO-391895037671891491068331", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -122232,7 +121578,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -122244,10 +121590,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", + "assetId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -122256,17 +121602,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:90b56fcc-07bc-4939-b0cc-c4a021760305", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:05b382c3-045c-4d5e-b480-1857d969b4d6", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -122279,24 +121625,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -122522,7 +121850,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-724113540825337678971966", + "batteryIDDMCCode" : "NO-391895037671891491068331", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -122541,28 +121869,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bc902f55-3a75-4588-94fb-d7067059f4cb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:ef42fd46-bc8b-4917-b651-6c6c23ad14f2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d82ee6c8-c677-4fb3-a447-7b8136e918df", + "parentItems" : [ { + "catenaXId" : "urn:uuid:5b60583a-bf81-49fd-89b1-cf329c0c0f89", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 85, + "recycledContent" : 22, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -122572,7 +121916,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 64, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -122582,7 +121926,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 24, + "recycledContent" : 4, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -122592,7 +121936,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 68, + "recycledContent" : 39, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -122602,7 +121946,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 23, + "recycledContent" : 53, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -122612,7 +121956,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 29, + "recycledContent" : 8, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -122622,7 +121966,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 57, + "recycledContent" : 42, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -122632,7 +121976,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 9, + "recycledContent" : 8, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -122642,7 +121986,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 65, + "recycledContent" : 88, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -122652,7 +121996,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 22, + "recycledContent" : 55, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -122663,322 +122007,322 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "childItems" : [ { - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -122986,33 +122330,33 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { "value" : "BPNL00000003AYRE", "key" : "manufacturerId" }, { - "value" : "XH-93", + "value" : "PC-28", "key" : "manufacturerPartId" }, { - "value" : "OMALJMMEXIGNTJZQM", + "value" : "OMAVHOPORUNZXBLLA", "key" : "partInstanceId" }, { - "value" : "OMALJMMEXIGNTJZQM", + "value" : "OMAVHOPORUNZXBLLA", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2016-03-06T12:29:16.000Z", + "date" : "2014-05-20T04:08:53.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "partTypeInformation" : { - "manufacturerPartId" : "XH-93", + "manufacturerPartId" : "PC-28", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -123020,17 +122364,17 @@ } ], "nameAtManufacturer" : "Vehicle Fully Electric" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -123041,8 +122385,8 @@ } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Mehrzweckfahrzeug", - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", + "bodyVariant" : "Pkw-Pick-up", + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", "engine" : { "size" : 2998, "power" : 143 @@ -123056,43 +122400,43 @@ "description" : "security plus", "group" : "special equipment" }, { - "code" : "S763C", - "description" : "sport package", + "code" : "S218A", + "description" : "sport automatic transmission", "group" : "special equipment" }, { - "code" : "A01CR", - "description" : "remote engine start", + "code" : "B298B", + "description" : "keyless entry", "group" : "special equipment" }, { - "code" : "C247R", - "description" : "trailer hitch", + "code" : "S2AVB", + "description" : "adaptive drive", "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2023-10-09", + "mileageTimestamp" : "2023-02-27", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "885363", + "orderNumber" : "287163", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -123103,8 +122447,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3294", + "referencedStandard" : "JIS", + "referencedStandardID" : "9167", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123116,27 +122460,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -123151,7 +122495,7 @@ "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-131732937300126776815176", + "value" : "NO-140816701374400389504456", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -123168,7 +122512,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -123180,22 +122524,22 @@ "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "assetId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", "partTypeInformation" : { "ownerPartId" : "73849201-61", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Catalysator", "partClassification" : [ { @@ -123205,31 +122549,29 @@ "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:966a7b97-c980-4bc1-a086-0e26057b62a3", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:79d62c1d-b561-4392-8fe9-898d937f97b7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "childItems" : [ { - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -123237,35 +122579,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "669818", + "orderNumber" : "914809", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "3527", + "referencedStandard" : "ISO", + "referencedStandardID" : "5131", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123277,27 +122619,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -123312,7 +122654,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-797084545053066023664316", + "value" : "NO-145020220675460346495389", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -123329,7 +122671,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -123341,10 +122683,10 @@ "nameAtManufacturer" : "Door f-l", "nameAtCustomer" : "Door front-left" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "assetId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -123353,29 +122695,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:64b5d052-0bbf-42d3-81a9-bf7e0e8d76b7", + "ownerItemId" : "urn:uuid:2278984e-657b-49ca-9382-d4646f207dcd", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "childassetId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", "partTypeInformation" : { "ownerPartId" : "22782277-50", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Door front-left", "partClassification" : [ { @@ -123385,27 +122727,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "76426224RGI", + "value" : "90313542BCD", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -123416,7 +122756,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -123429,19 +122769,19 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "171827", + "orderNumber" : "127885", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -123452,12 +122792,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1908", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4019", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123466,30 +122806,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -123504,7 +122844,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-529712629956906801236711", + "value" : "NO-634391319433688898264208", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -123515,7 +122855,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -123530,16 +122870,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "assetId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", "partTypeInformation" : { "ownerPartId" : "95657762-59", "partVersion" : "05", @@ -123552,31 +122892,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3c318665-39b6-496c-aad6-83c1e946366b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aa0e0548-6e86-4825-a035-5d6d39fc0db7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:58b1972a-2f60-4e2c-8fe8-85c6aa14d753", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:033d0bcf-8e84-4a88-bf66-8da624468f1b", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "childItems" : [ { - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -123584,35 +122922,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "746375", + "orderNumber" : "376670", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "3597", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4792", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123624,11 +122962,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -123638,13 +122976,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -123659,7 +122997,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-864754207488573774479092", + "value" : "NO-757808915893862992607056", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -123676,7 +123014,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -123688,10 +123026,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "assetId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -123700,29 +123038,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:17a27633-730c-4aba-a8f9-ebfaaa3ca92a", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:97c049c2-15f4-4569-b90e-8ccd8d26355d", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "childassetId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -123732,27 +123070,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "26807698BLW", + "value" : "46126318YME", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -123763,7 +123099,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -123776,35 +123112,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "928025", + "orderNumber" : "397061", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8284", + "referencedStandard" : "ASME", + "referencedStandardID" : "1192", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123820,7 +123156,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -123851,7 +123187,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-827581289882481230478999", + "value" : "NO-697788953263381055413466", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -123862,7 +123198,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -123874,22 +123210,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "assetId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -123899,53 +123235,51 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:05e94f87-d421-4d8a-85d6-c9bfb1ff63af", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a24e7872-8230-480f-8bd7-4650e3e87ad3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f1cab4e5-3050-45ee-b222-f24eb188e14c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d252eb23-be78-419e-a957-4bd358543631", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "519156", + "orderNumber" : "73412", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4527", + "referencedStandard" : "ISO", + "referencedStandardID" : "2070", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -123956,12 +123290,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -123971,13 +123305,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -123992,7 +123326,7 @@ "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-406065790934879225608594", + "value" : "NO-653612956947623601612006", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124003,7 +123337,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -124015,22 +123349,22 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "assetId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { @@ -124040,53 +123374,51 @@ "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:321d1bb6-e94c-400b-8825-49a2a15bcdd6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d21f6082-a7b9-4fe6-b8ce-45938aeee8b8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "39570", + "orderNumber" : "948915", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9104", + "referencedStandard" : "ISO", + "referencedStandardID" : "3809", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124095,30 +123427,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -124133,7 +123465,7 @@ "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-796167989573498912686635", + "value" : "NO-846584993787476923610651", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -124150,7 +123482,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -124165,16 +123497,16 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "assetId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", "partTypeInformation" : { "ownerPartId" : "28673126-98", "partVersion" : "02", @@ -124187,53 +123519,51 @@ "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f1b7236f-5a7e-44f6-ab3a-8a4f6482f644", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0728656f-8f42-4584-906b-7e99ae9734fa", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "273750", + "orderNumber" : "293657", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5752", + "referencedStandard" : "JIS", + "referencedStandardID" : "4889", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124242,24 +123572,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -124280,7 +123610,7 @@ "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-388537891916977013611943", + "value" : "NO-324318893440632794409402", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -124297,7 +123627,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -124309,22 +123639,22 @@ "nameAtManufacturer" : "Engine hood", "nameAtCustomer" : "Engine hood" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "assetId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", "partTypeInformation" : { "ownerPartId" : "94421589-82", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Engine hood", "partClassification" : [ { @@ -124334,41 +123664,39 @@ "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:117a2d7c-2673-4bc7-aac1-679f6950a041", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:89adacb8-e1d5-415f-adc0-494d840a749f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "42825", + "orderNumber" : "286262", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, @@ -124379,8 +123707,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1379", + "referencedStandard" : "AISI", + "referencedStandardID" : "3973", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124391,28 +123719,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -124427,7 +123755,7 @@ "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-857004458075736523524597", + "value" : "NO-462236595118986222488814", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124438,7 +123766,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -124450,22 +123778,22 @@ "nameAtManufacturer" : "Tailgate", "nameAtCustomer" : "Tailgate" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "assetId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", "partTypeInformation" : { "ownerPartId" : "85023955-75", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tailgate", "partClassification" : [ { @@ -124475,53 +123803,51 @@ "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3dc8826d-dc1b-4259-8f59-df3149160cc0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9fcb541b-698a-40d5-a998-fd2b08a25e5e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "657696", + "orderNumber" : "551488", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6767", + "referencedStandard" : "JIS", + "referencedStandardID" : "1135", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124533,11 +123859,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -124547,7 +123873,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -124568,7 +123894,7 @@ "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-957399938211976692050930", + "value" : "NO-376983895573429430312771", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124579,7 +123905,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -124591,22 +123917,22 @@ "nameAtManufacturer" : "Fender left", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "assetId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", "partTypeInformation" : { "ownerPartId" : "13769860-47", - "partVersion" : "03", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -124616,53 +123942,51 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:37981b45-6ff5-4789-8af4-596ba3356835", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:65c12779-fe7b-480b-bcae-37de98aab505", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "434372", + "orderNumber" : "950592", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "9366", + "referencedStandard" : "ASME", + "referencedStandardID" : "8674", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124671,30 +123995,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -124709,7 +124033,7 @@ "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-827857791188817306605242", + "value" : "NO-669324015381709299075681", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124720,7 +124044,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -124732,22 +124056,22 @@ "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "assetId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", "partTypeInformation" : { "ownerPartId" : "36643162-35", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { @@ -124757,28 +124081,26 @@ "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0b4dae10-a4bc-46db-8347-8a916f0af610", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f28ed67-e3a3-48e4-ae5c-352a8490546d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "973698", + "orderNumber" : "983738", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -124787,13 +124109,13 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -124802,8 +124124,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7475", + "referencedStandard" : "JASO", + "referencedStandardID" : "8166", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124814,28 +124136,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -124850,7 +124172,7 @@ "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-183355004442600440398895", + "value" : "NO-840025256384714282504938", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -124861,7 +124183,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -124873,22 +124195,22 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "assetId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "02", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { @@ -124898,53 +124220,51 @@ "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:750018a4-bbad-4709-a01e-5a0f94433d7c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e62a465c-d7c9-4596-ab6b-370ef4751944", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "736137", + "orderNumber" : "303057", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "1274", + "referencedStandardID" : "1742", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -124953,24 +124273,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -124991,7 +124311,7 @@ "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-139283692052251878287186", + "value" : "NO-597774853565321844837459", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125002,7 +124322,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -125014,22 +124334,22 @@ "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "assetId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", "partTypeInformation" : { "ownerPartId" : "22768257-25", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Bumper rear", "partClassification" : [ { @@ -125039,53 +124359,51 @@ "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:abad4b0f-d730-44b5-a4f3-469e6d60794f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:46266bc3-7fc0-4dc5-9c4c-166129334fbc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "527263", + "orderNumber" : "567695", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN EN", - "referencedStandardID" : "3530", + "referencedStandardID" : "2546", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125094,24 +124412,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -125132,7 +124450,7 @@ "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-953346655646650556865701", + "value" : "NO-932753597881427636293704", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125143,7 +124461,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -125155,22 +124473,22 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "assetId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { @@ -125180,53 +124498,51 @@ "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9579c49f-aaa0-46ae-8780-c9a247544aa5", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:06be54bc-8899-4288-a13a-113d9f3dddc7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "343957", + "orderNumber" : "642805", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "6339", + "referencedStandard" : "ISO", + "referencedStandardID" : "5320", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125237,28 +124553,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -125273,7 +124589,7 @@ "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-844308332835266576477207", + "value" : "NO-337205923049940599347636", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125284,7 +124600,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -125299,16 +124615,16 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "assetId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", "partTypeInformation" : { "ownerPartId" : "58471477-24", "partVersion" : "03", @@ -125321,43 +124637,41 @@ "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c9decf95-4054-49f7-b44f-f50f75913f0c", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a269a3e6-db15-47e5-99de-46318eb1892c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "574423", + "orderNumber" : "36471", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -125366,8 +124680,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "2476", + "referencedStandard" : "EN", + "referencedStandardID" : "5731", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125376,30 +124690,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -125414,7 +124728,7 @@ "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-255262622365556582484075", + "value" : "NO-868511190630987435358438", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125425,7 +124739,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -125437,22 +124751,22 @@ "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "assetId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", "partTypeInformation" : { "ownerPartId" : "09002013-68", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Tailer coupling", "partClassification" : [ { @@ -125462,43 +124776,41 @@ "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d98bcb46-17f4-4510-980f-e346090db000", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9245da08-969c-4d37-a071-6b4986b56c1a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "690660", + "orderNumber" : "889524", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -125507,8 +124819,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "3813", + "referencedStandard" : "AS", + "referencedStandardID" : "3263", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125520,11 +124832,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -125534,13 +124846,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -125555,7 +124867,7 @@ "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-214622233852735436570638", + "value" : "NO-027069717568924142128693", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125566,7 +124878,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -125578,22 +124890,22 @@ "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "assetId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", "partTypeInformation" : { "ownerPartId" : "43501996-98", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Dashboard", "partClassification" : [ { @@ -125603,53 +124915,51 @@ "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:95806ff6-7565-4633-b8dd-da2d4ed33cc6", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:50d76011-c285-4d73-936b-e54768ab4bd5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "349639", + "orderNumber" : "897484", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "4929", + "referencedStandard" : "JASO", + "referencedStandardID" : "5268", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125658,14 +124968,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -125675,13 +124985,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -125696,7 +125006,7 @@ "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-842938359590063280117347", + "value" : "NO-981817296766051418121623", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125707,7 +125017,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -125719,22 +125029,22 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "assetId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "03", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { @@ -125744,53 +125054,51 @@ "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0ce1a61e-182e-4449-af69-616bacbdb84b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9425f1ac-6908-424e-8f56-c8ea4433e0de", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "473361", + "orderNumber" : "991879", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9106", + "referencedStandard" : "ISO", + "referencedStandardID" : "9626", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125799,10 +125107,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -125816,13 +125124,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -125837,7 +125145,7 @@ "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-644622011883694931091746", + "value" : "NO-049149906127737207642454", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125848,7 +125156,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -125860,22 +125168,22 @@ "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "assetId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", "partTypeInformation" : { "ownerPartId" : "20125432-59", - "partVersion" : "01", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Indicator left", "partClassification" : [ { @@ -125885,53 +125193,51 @@ "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3b7b3934-9928-4fe8-85f3-a29438577bc4", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:62ab53a5-d7e3-4862-8e32-e6155d6021b2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "947011", + "orderNumber" : "880741", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 23 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4435", + "referencedStandard" : "ASME", + "referencedStandardID" : "3954", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -125940,14 +125246,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -125957,13 +125263,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -125978,7 +125284,7 @@ "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-039873956461761228319899", + "value" : "NO-854676697474862936393828", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -125989,7 +125295,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -126004,16 +125310,16 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "assetId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", "partTypeInformation" : { "ownerPartId" : "19073706-76", "partVersion" : "02", @@ -126026,53 +125332,51 @@ "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bf2d1448-a4aa-424f-8573-8d173e21f71f", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f07ab5c-54f1-489b-b658-962d02de43c8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "884392", + "orderNumber" : "606318", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8046", + "referencedStandard" : "ASME", + "referencedStandardID" : "4358", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126081,30 +125385,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -126119,7 +125423,7 @@ "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-465941145566936814653478", + "value" : "NO-280723231044514028929700", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126130,7 +125434,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -126142,22 +125446,22 @@ "nameAtManufacturer" : "Led headlight", "nameAtCustomer" : "Led headlight" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "assetId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", "partTypeInformation" : { "ownerPartId" : "45415162-57", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Led headlight", "partClassification" : [ { @@ -126167,43 +125471,41 @@ "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c5027aab-8e10-40f4-8ece-44dec093e13b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:62cdb1a1-5668-4d4d-9405-08815b0a44e1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "998607", + "orderNumber" : "869115", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 23 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -126213,7 +125515,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "8657", + "referencedStandardID" : "3610", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126222,7 +125524,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 @@ -126235,11 +125537,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -126260,7 +125562,7 @@ "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-839773269783048448130319", + "value" : "NO-546923032331232343378186", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126271,7 +125573,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -126283,22 +125585,22 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "assetId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "04", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { @@ -126308,53 +125610,51 @@ "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:33d2c7fe-f325-45c1-8d48-b348a339b18d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2599d37-eeae-4dc6-a8c0-540b10fc754f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "893422", + "orderNumber" : "985993", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3955", + "referencedStandard" : "EN", + "referencedStandardID" : "2987", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126363,30 +125663,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -126401,7 +125701,7 @@ "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-420904072316887872619111", + "value" : "NO-118420745212823143151249", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126412,7 +125712,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -126427,16 +125727,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "assetId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", "partTypeInformation" : { "ownerPartId" : "81324139-23", "partVersion" : "01", @@ -126449,43 +125749,41 @@ "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:11465055-6b63-4d7d-b91a-8b043a67a3a9", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7ae121a2-aeb3-4e54-9792-00b8a586ce99", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "675466", + "orderNumber" : "322442", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -126494,8 +125792,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "8025", + "referencedStandard" : "IS", + "referencedStandardID" : "3936", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126507,11 +125805,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -126521,13 +125819,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -126542,7 +125840,7 @@ "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-424790817498696449441638", + "value" : "NO-346386415878360189792135", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126553,7 +125851,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -126568,16 +125866,16 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "assetId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", "partTypeInformation" : { "ownerPartId" : "57929013-09", "partVersion" : "04", @@ -126590,53 +125888,51 @@ "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:72ebfbd5-54eb-430c-80dd-b40c167364c9", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1cd0e175-3f84-4140-8a8e-bd4efdc9765e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "286636", + "orderNumber" : "226554", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "7871", + "referencedStandard" : "AISI", + "referencedStandardID" : "2501", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126645,20 +125941,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -126668,7 +125964,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -126683,7 +125979,7 @@ "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-875900226307888871498847", + "value" : "NO-185130687109752250587638", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126694,7 +125990,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -126706,22 +126002,22 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "assetId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { @@ -126731,53 +126027,51 @@ "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8b9f45e8-e2ac-4d34-9662-4973f5be4f04", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:72fe5c32-18ea-4c08-92a3-21355e9d29dc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "424622", + "orderNumber" : "531508", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "1932", + "referencedStandardID" : "7339", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126788,28 +126082,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -126824,7 +126118,7 @@ "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-322885601135436788460719", + "value" : "NO-039706753568874019967653", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126835,7 +126129,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -126847,22 +126141,22 @@ "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "assetId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", "partTypeInformation" : { "ownerPartId" : "78744126-74", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Taillight front", "partClassification" : [ { @@ -126872,28 +126166,26 @@ "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8d3fd3a4-e308-4d77-82ee-5adeee96a355", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6f01feea-55c2-46c5-a455-d6ed95eff9a2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "980587", + "orderNumber" : "508518", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -126902,23 +126194,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "1137", + "referencedStandard" : "JASO", + "referencedStandardID" : "4506", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -126927,30 +126219,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -126965,7 +126257,7 @@ "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-095583662686007569223747", + "value" : "NO-998982098488787010970286", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -126976,7 +126268,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -126988,22 +126280,22 @@ "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "assetId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", "partTypeInformation" : { "ownerPartId" : "12093297-03", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part front", "partClassification" : [ { @@ -127013,53 +126305,51 @@ "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5c182eb5-3fd3-4c12-afe0-87980571d8ed", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6dceae77-9d5d-4165-90bc-e17d7f6d1727", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "396639", + "orderNumber" : "918687", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "5176", + "referencedStandard" : "ASME", + "referencedStandardID" : "8526", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127068,20 +126358,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -127091,7 +126381,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -127106,7 +126396,7 @@ "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-360068828389685342134227", + "value" : "NO-712547592971864835151018", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127117,7 +126407,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -127129,22 +126419,22 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "assetId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { @@ -127154,53 +126444,51 @@ "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9cf7d147-02f8-4a48-81a2-e272b481842e", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:269730ad-0db1-4422-986a-b06f3a0ce671", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "723657", + "orderNumber" : "986137", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "1030", + "referencedStandard" : "EN", + "referencedStandardID" : "4933", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127211,28 +126499,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -127247,7 +126535,7 @@ "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-635693250173819121828510", + "value" : "NO-233550478249516645945753", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127258,7 +126546,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -127270,22 +126558,22 @@ "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "assetId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", "partTypeInformation" : { "ownerPartId" : "00871379-44", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Chassis", "partClassification" : [ { @@ -127295,53 +126583,51 @@ "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7493784-0aa6-4499-bfc5-6f49d044b510", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f38f7ec3-dcdc-41b2-9a09-659179eb6278", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "375771", + "orderNumber" : "948264", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "6470", + "referencedStandard" : "ASME", + "referencedStandardID" : "2016", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127350,10 +126636,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -127363,11 +126649,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -127388,7 +126674,7 @@ "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-083480373139670709044407", + "value" : "NO-464038483769535552094897", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127399,7 +126685,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -127411,22 +126697,22 @@ "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "assetId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", "partTypeInformation" : { "ownerPartId" : "08901347-87", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Rims", "partClassification" : [ { @@ -127436,41 +126722,39 @@ "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b265612f-0986-4b83-8eea-696bca0b0f83", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f04fbd63-685f-41e7-bebf-ec0aafb77fe1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "753648", + "orderNumber" : "562770", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 27 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, @@ -127482,7 +126766,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "2434", + "referencedStandardID" : "3573", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127491,10 +126775,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -127504,17 +126788,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -127529,7 +126813,7 @@ "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-665173854732642413380781", + "value" : "NO-188833714026594469826129", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -127540,7 +126824,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -127555,16 +126839,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "assetId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", "partTypeInformation" : { "ownerPartId" : "45863316-60", "partVersion" : "05", @@ -127577,28 +126861,26 @@ "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85aa8a5c-2248-4964-923f-e9f08737ebdc", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2590bb8f-f847-4bf1-9cd4-7c34dcf9b827", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 32, + "recycledContent" : 72, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -127608,7 +126890,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 84, + "recycledContent" : 87, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -127618,7 +126900,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 40, + "recycledContent" : 31, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -127629,32 +126911,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "childItems" : [ { - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -127662,35 +126944,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "785054", + "orderNumber" : "64315", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4763", + "referencedStandard" : "IS", + "referencedStandardID" : "5605", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -127702,11 +126984,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -127716,13 +126998,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -127737,7 +127019,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-297862023737110452281832", + "value" : "NO-318663460450330470472394", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -127754,7 +127036,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -127769,26 +127051,26 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "assetId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4704d750-a40f-4331-a8c5-174d71599841", + "ownerItemId" : "urn:uuid:e85f9bd5-d50a-4203-9836-a8437fe6badb", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "childassetId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -127797,17 +127079,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8f716038-19c3-4db9-9cea-040c6ba48f0f", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:e42cde0a-cc3b-41a0-9107-3f15ba6896bf", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "childassetId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -127816,17 +127098,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1d4ee559-402d-4274-99d5-4ad3c13b72d2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:6ddcadf2-e9e5-4ca9-b1c5-adc38d1c6b5e", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "childassetId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -127839,24 +127121,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -127898,10 +127162,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", "identification" : { "localIdentifiers" : [ { - "value" : "NO-297862023737110452281832", + "value" : "NO-318663460450330470472394", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -127967,22 +127231,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -127990,7 +127270,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 49, + "recycledContent" : 79, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -128000,7 +127280,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 44, + "recycledContent" : 60, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -128010,25 +127290,25 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "909034", + "orderNumber" : "482451", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -128037,8 +127317,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1177", + "referencedStandard" : "JIS", + "referencedStandardID" : "3246", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128047,30 +127327,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -128078,7 +127358,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "assetId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -128095,24 +127375,24 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "partTypeInformation" : { - "manufacturerPartId" : "WZ-57", + "manufacturerPartId" : "RD-68", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, "itemVersion" : "02" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "02", @@ -128125,31 +127405,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48ed4ff4-e7d6-4602-bbe7-678e9454d965", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cc8806a6-c288-43e5-8a1d-21ba9f6a8948", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "childItems" : [ { - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -128157,10 +127435,10 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "675120", + "orderNumber" : "521737", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -128169,23 +127447,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "4961", + "referencedStandard" : "ASME", + "referencedStandardID" : "2071", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128196,18 +127474,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -128217,7 +127495,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -128229,10 +127507,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "20713L6-02", + "value" : "58808R3-04", "key" : "manufacturerPartId" }, { - "value" : "NO-599077453926031454448409", + "value" : "NO-277255157969174594907803", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -128243,10 +127521,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "partTypeInformation" : { - "manufacturerPartId" : "20713L6-02", - "customerPartId" : "20713L6-02", + "manufacturerPartId" : "58808R3-04", + "customerPartId" : "58808R3-04", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128255,10 +127533,10 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "assetId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -128267,29 +127545,29 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d85fce44-58aa-4a49-967b-534ffa3e0ab8", + "ownerItemId" : "urn:uuid:8b3a0a08-8bea-4cc0-87ae-4989b3a3bb2e", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "childassetId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", "partTypeInformation" : { - "ownerPartId" : "20713L6-02", - "partVersion" : "01", + "ownerPartId" : "58808R3-04", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -128299,22 +127577,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -128322,7 +127598,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 32, + "recycledContent" : 23, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -128332,7 +127608,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 66, + "recycledContent" : 22, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -128342,25 +127618,25 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "576400", + "orderNumber" : "853254", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -128369,8 +127645,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4682", + "referencedStandard" : "DIN", + "referencedStandardID" : "6113", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128379,10 +127655,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -128392,17 +127668,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -128410,7 +127686,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "assetId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -128427,9 +127703,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "partTypeInformation" : { - "manufacturerPartId" : "WN-36", + "manufacturerPartId" : "SQ-07", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128439,12 +127715,12 @@ }, "itemVersion" : "04" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "04", @@ -128457,26 +127733,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6648425-07d1-45f5-92a2-74f4b07876cc", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aef754c9-7a93-4cbd-ad18-9cdf1e9804e1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:ea5938bf-98c9-43d0-9573-29efdd61ca0c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:2cae5dcf-6111-4401-a154-3f62f9efed70", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -128491,35 +127765,35 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "330135", + "orderNumber" : "653234", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4981", + "referencedStandard" : "EN", + "referencedStandardID" : "7770", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128528,30 +127802,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -128559,7 +127833,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "assetId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -128576,9 +127850,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "partTypeInformation" : { - "manufacturerPartId" : "IH-58", + "manufacturerPartId" : "SD-59", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128586,17 +127860,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -128606,28 +127880,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7c6aadb5-a734-43b7-98ed-a8b474a0e93d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7c2fe69d-36eb-4874-8cc7-a40f2b77b519", + "parentItems" : [ { + "catenaXId" : "urn:uuid:11cb3621-2f78-4d24-8e25-b77abe0fc480", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:6169d1ed-029b-4b6a-8a24-09f90bc7cada", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 4, + "recycledContent" : 55, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -128638,32 +127910,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "childItems" : [ { - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -128671,35 +127943,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "614008", + "orderNumber" : "204437", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "7710", + "referencedStandard" : "AISI", + "referencedStandardID" : "2378", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128708,30 +127980,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -128743,10 +128015,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "93096K5-94", + "value" : "87424V8-68", "key" : "manufacturerPartId" }, { - "value" : "NO-059518126168909770052269", + "value" : "NO-073819087625528106236311", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -128757,10 +128029,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "partTypeInformation" : { - "manufacturerPartId" : "93096K5-94", - "customerPartId" : "93096K5-94", + "manufacturerPartId" : "87424V8-68", + "customerPartId" : "87424V8-68", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128769,10 +128041,10 @@ "nameAtManufacturer" : "ECU", "nameAtCustomer" : "ECU" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "assetId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -128781,17 +128053,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:aa89581e-15e5-4672-ba57-ce2902df6b4c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3482be72-a50b-4285-80a3-e813e4ba507a", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "childassetId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -128800,17 +128072,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2133329a-1931-4197-927a-07d2672252e5", + "ownerItemId" : "urn:uuid:ba61a6a1-0a63-4c69-bb42-472f99ea8b5d", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "childassetId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -128819,29 +128091,29 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:83990e87-ed0d-4ebe-9bf8-33523d57bad6", + "ownerItemId" : "urn:uuid:bcfebf48-373b-419b-9a23-a3d636789c39", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "childassetId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", "partTypeInformation" : { - "ownerPartId" : "93096K5-94", - "partVersion" : "01", + "ownerPartId" : "87424V8-68", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "ECU", "partClassification" : [ { @@ -128851,22 +128123,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -128874,7 +128144,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 48, + "recycledContent" : 25, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -128884,7 +128154,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 68, + "recycledContent" : 65, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -128894,23 +128164,23 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "767035", + "orderNumber" : "489123", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -128921,8 +128191,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9969", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "3144", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -128931,14 +128201,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -128948,13 +128218,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -128962,7 +128232,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "assetId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -128979,9 +128249,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "partTypeInformation" : { - "manufacturerPartId" : "IJ-97", + "manufacturerPartId" : "YY-49", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -128989,17 +128259,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "04", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -129009,31 +128279,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a5e37d05-f9e4-4ded-8d23-cfe62c2bf688", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:16d6e7e8-613d-4ea7-bbb5-76eec5cecc20", + "parentItems" : [ { + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "childItems" : [ { - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -129041,35 +128309,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "36903", + "orderNumber" : "648806", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5182", + "referencedStandard" : "ISO", + "referencedStandardID" : "8851", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -129080,12 +128348,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -129095,13 +128363,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -129113,10 +128381,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "21461W2-49", + "value" : "43992K6-63", "key" : "manufacturerPartId" }, { - "value" : "NO-639962420336668821218916", + "value" : "NO-893527191749220349140050", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -129127,10 +128395,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "partTypeInformation" : { - "manufacturerPartId" : "21461W2-49", - "customerPartId" : "21461W2-49", + "manufacturerPartId" : "43992K6-63", + "customerPartId" : "43992K6-63", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -129142,37 +128410,37 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "assetId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cae41ef3-ec33-4ae6-bbf9-a8a7d81dc504", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a73585c3-3afb-4a41-8297-5426c25e8a9e", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "childassetId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", "partTypeInformation" : { - "ownerPartId" : "21461W2-49", + "ownerPartId" : "43992K6-63", "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Sensor", @@ -129183,22 +128451,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -129206,7 +128472,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 70, + "recycledContent" : 10, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -129216,7 +128482,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 87, + "recycledContent" : 57, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -129226,35 +128492,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "484665", + "orderNumber" : "959249", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "6810", + "referencedStandard" : "JASO", + "referencedStandardID" : "8097", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -129265,28 +128531,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -129294,7 +128560,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "assetId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -129311,27 +128577,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "partTypeInformation" : { - "manufacturerPartId" : "PR-60", + "manufacturerPartId" : "GH-60", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -129341,22 +128607,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:389c7b9e-7e46-48a5-9c7b-2130d6a34b12", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d03bf9cf-47a6-4147-86c1-295ae14c3528", + "parentItems" : [ { + "catenaXId" : "urn:uuid:50c54c3b-2b93-4819-881e-0ae3851a419c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:0eb9bcbe-ff87-4e02-82b9-6566ba490dbd", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -129364,7 +128628,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 63, + "recycledContent" : 78, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -129374,7 +128638,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 61, + "recycledContent" : 76, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -129384,35 +128648,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "156108", + "orderNumber" : "794045", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7857", + "referencedStandard" : "ASME", + "referencedStandardID" : "2903", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -129423,18 +128687,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -129444,7 +128708,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } } } @@ -129456,24 +128720,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "56931M6-58", + "value" : "35290I8-61", "key" : "manufacturerPartId" }, { - "value" : "NO-184597319146186417552311", + "value" : "NO-730880564404733288466942", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "partTypeInformation" : { - "manufacturerPartId" : "56931M6-58", - "customerPartId" : "56931M6-58", + "manufacturerPartId" : "35290I8-61", + "customerPartId" : "35290I8-61", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -129485,18 +128749,18 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "assetId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", "partTypeInformation" : { - "ownerPartId" : "56931M6-58", + "ownerPartId" : "35290I8-61", "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Engineering Plastics", @@ -129507,25 +128771,87 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:40720e84-e8b7-4fb4-8051-4286ea37836d", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1115f72f-be7c-45d2-9b41-e49b5a6af9d4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:295ea608-eafc-4984-a377-4d7ce088194f", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b61983a8-d065-4cb2-877a-5b49d4ff27c0", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "childItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { @@ -129535,7 +128861,7 @@ "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-524017634554899551071911", + "value" : "NO-396609437206965622860492", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -129552,7 +128878,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -129564,7 +128890,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "03" + "itemVersion" : "04" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -129603,7 +128929,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-524017634554899551071911", + "oeNumber" : "NO-396609437206965622860492", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -129616,7 +128942,7 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", + "assetId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -129625,17 +128951,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5bbdd5c0-382a-4124-9bbc-a5cd70d09215", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:fe41d9da-c32a-428c-beef-70c318d26d01", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "childassetId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129644,17 +128970,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:555ec19c-b017-4061-b2eb-5f5f92d9ca5a", + "ownerItemId" : "urn:uuid:7170d4ff-3132-46d1-90b9-d7bca4d7630d", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "childassetId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129663,17 +128989,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:11be7ff3-50a2-4695-8e21-27185b6ad879", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:37da01c4-4d85-4b2e-8f76-894544b9590e", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "childassetId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129682,17 +129008,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bdd3a663-f213-4ae8-b627-dc9bbb5d970a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:57292449-b30a-4e84-8d12-60eccc9c79bf", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "childassetId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129701,17 +129027,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f5708bd6-b73b-490d-ad27-cc5bd7e90a59", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:32d0d55f-838b-4f4c-a5ea-f975058b0397", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "childassetId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -129720,17 +129046,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5dae8822-faed-4f36-8ebf-82eff0d50d36", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:62829c45-1df7-4625-a97f-ed4fc708aed9", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "childassetId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -129765,36 +129091,36 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2023-08-05", - "version" : 2.5, - "status" : "Approved" + "issueDate" : "2023-03-05", + "version" : 1.4, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1074.0808, - "width" : 1074, - "length" : 2410, - "weight" : 511, - "height" : 275 + "diameter" : 1545.0873, + "width" : 1545, + "length" : 2597, + "weight" : 618, + "height" : 281 }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2020-08-27", + "placedOnMarket" : "2022-11-15", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-524017634554899551071911", + "value" : "NO-396609437206965622860492", "key" : "PartInstanceID" } ], - "gtin" : " 16830141", + "gtin" : " 67714880", "additionalCode" : [ { "name" : "TARIC", - "value" : "714927210" + "value" : "593212680" } ] }, "sources" : { @@ -129816,7 +129142,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "SubstanceOfConcer", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -129845,12 +129171,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-12", + "date" : "2023-08-31", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -129861,9 +129187,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 0.8403 ] + "left" : [ 1.717 ] }, - "id" : "FD7625" + "id" : "ZL7204" } ] }, "additionalData" : [ { @@ -129889,7 +129215,7 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Steel" } ], "critical" : [ "Nickel" ], "carbonFootprint" : { @@ -129901,39 +129227,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 117 + "carbonContentTotal" : 108 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AYRE" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:bbc73e8e-e09a-4042-899c-699a089a1e8c", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AYRE:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 33, + "recycledContent" : 24, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -129943,7 +129270,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 73, + "recycledContent" : 15, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -129953,7 +129280,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 87, + "recycledContent" : 17, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -129963,85 +129290,21 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "childItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "654735", + "orderNumber" : "813645", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -130052,8 +129315,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "8671", + "referencedStandard" : "ISO", + "referencedStandardID" : "4799", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -130064,22 +129327,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -130092,24 +129355,6 @@ } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -130335,7 +129580,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-524017634554899551071911", + "batteryIDDMCCode" : "NO-396609437206965622860492", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -130354,6 +129599,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d96fc6a6-66d9-49b0-bfd7-d46319e471a2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AYRE" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -130369,7 +129629,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 25, + "recycledContent" : 54, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -130379,7 +129639,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 50, + "recycledContent" : 38, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -130389,7 +129649,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 29, + "recycledContent" : 31, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -130400,112 +129660,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -130513,35 +129773,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "273206", + "orderNumber" : "218291", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1736", + "referencedStandard" : "AISI", + "referencedStandardID" : "6736", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -130550,14 +129810,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -130567,13 +129827,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -130588,7 +129848,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-437222166318482402504580", + "value" : "NO-861507098247135201326269", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -130599,7 +129859,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -130611,10 +129871,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", + "assetId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -130623,17 +129883,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3999547f-2b94-4ab5-b447-cdec7625c2ca", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:537aba27-77b6-453f-9ff7-9c217b5d0a8b", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130642,17 +129902,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:37f760aa-779e-40fe-b240-91ae810af92f", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:4efa24e1-54f3-4b14-84f0-10b61d8c1c53", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "childassetId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130661,17 +129921,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b42557ad-3bb3-44db-b36d-e1f63798edfc", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:944fd3bd-7a32-42a8-a35d-779878e67403", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "childassetId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130680,17 +129940,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c2710673-d671-42d6-8d0e-c935c011fb64", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c1578f4e-a319-4b54-8e06-792bdab0da29", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "childassetId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130699,17 +129959,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e3db81f2-6ba7-4363-a4b9-872ba74e29e8", + "ownerItemId" : "urn:uuid:635c101f-faa7-46cf-823f-e85e833e6f35", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "childassetId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130718,17 +129978,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:206d3b69-3eb2-4659-830b-05379b8a124a", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c631290c-0dc7-42b0-bce8-971089b30523", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "childassetId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130737,17 +129997,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cde33f9a-77b0-4ed7-b8ec-4fe8206eaf5c", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:628d5653-48f4-4c9e-89df-aff9cd211009", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "childassetId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130756,17 +130016,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3cb725ba-086b-4c7e-a9fb-2fa3aabd6a93", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:f9311878-0c19-40d8-874e-ede702a83116", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "childassetId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130775,17 +130035,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a07e4be6-1cf7-4d67-b944-49b6657053f9", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:2e963ca9-04c8-42bd-97a6-2ac7e20b4ce3", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "childassetId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130794,17 +130054,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fd8e93c6-6843-4bee-8336-31a1058f7113", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d1124561-bd1b-4642-9882-a1088c5ff102", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "childassetId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -130813,38 +130073,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1f027e83-d4df-4b07-b886-d21cbf8efa89", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:4b00cea2-582e-4c34-a0c9-30c57024710a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "childassetId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -131070,7 +130312,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-437222166318482402504580", + "batteryIDDMCCode" : "NO-861507098247135201326269", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -131112,13 +130354,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2024-02-29", - "version" : 1, + "issueDate" : "2023-02-27", + "version" : 2, "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.642, + "diameter" : 229.6598, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -131130,18 +130372,18 @@ } }, "commercial" : { - "placedOnMarket" : "2023-09-13", + "placedOnMarket" : "2021-12-25", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-437222166318482402504580", + "value" : "NO-861507098247135201326269", "key" : "PartInstanceID" } ], - "gtin" : " 66301870", + "gtin" : " 88631961", "additionalCode" : [ { "name" : "TARIC", - "value" : "829467178" + "value" : "485635879" } ] }, "sources" : { @@ -131163,7 +130405,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Passport", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -131192,12 +130434,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-03-05", + "date" : "2023-10-30", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : true, + "reusablePackaging" : false, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -131208,9 +130450,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.0243 ] + "left" : [ 3.8806 ] }, - "id" : "WD4510" + "id" : "MI8397" } ] }, "additionalData" : [ { @@ -131236,9 +130478,9 @@ "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Insulator" + "name" : "Manganese" } ], - "critical" : [ "Manganese" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -131248,14 +130490,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 101 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003B3NX", "manufacturerId" : "BPNL00000003AYRE" } } @@ -131268,31 +130510,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -131307,11 +130565,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-06", + "currentStateOfHealthTimestamp" : "2021-08-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -131321,35 +130579,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "161005", + "orderNumber" : "186323", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5583", + "referencedStandard" : "EN", + "referencedStandardID" : "4318", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -131358,30 +130616,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -131396,7 +130654,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-695649331867836258032978", + "value" : "NO-045687080273213632469255", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -131407,7 +130665,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -131419,10 +130677,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", + "assetId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -131431,17 +130689,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e548a9c0-ee1c-4c82-917a-2ea906651ea8", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a46d5d30-d25d-4086-a85a-246ac6afcdde", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -131454,24 +130712,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -131697,7 +130937,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-695649331867836258032978", + "batteryIDDMCCode" : "NO-045687080273213632469255", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -131716,31 +130956,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:77934d92-171a-4a0b-9a3d-c64ec31c9853", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:aaaf2711-d8d9-45c9-a7ed-dce8146dbaa8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -131755,11 +131011,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-01", + "currentStateOfHealthTimestamp" : "2018-08-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -131769,25 +131025,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "564849", + "orderNumber" : "952895", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -131796,8 +131052,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7058", + "referencedStandard" : "JASO", + "referencedStandardID" : "4792", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -131809,7 +131065,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -131823,7 +131079,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -131844,7 +131100,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-888132613663078235630423", + "value" : "NO-238795120033147590800901", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -131855,7 +131111,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -131867,10 +131123,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", + "assetId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -131879,17 +131135,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f5c10410-07d6-48de-8bc1-1cf602e5b355", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:36949b13-2e49-4028-ba79-75da13e51f39", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -131902,24 +131158,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -132145,7 +131383,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-888132613663078235630423", + "batteryIDDMCCode" : "NO-238795120033147590800901", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -132164,31 +131402,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a09778a9-1b7e-4aee-85ba-17b29a28d663", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7756181a-69be-42fb-9b98-39a9033f6a14", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -132203,11 +131457,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-01-14", + "currentStateOfHealthTimestamp" : "2021-06-15", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -132217,19 +131471,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "656638", + "orderNumber" : "29146", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -132240,12 +131494,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "7771", + "referencedStandard" : "JIS", + "referencedStandardID" : "7149", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -132254,24 +131508,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -132292,7 +131546,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-969570155601910380830420", + "value" : "NO-136752824476347417416968", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -132303,7 +131557,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -132315,10 +131569,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", + "assetId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -132327,17 +131581,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8bfd8b50-f2eb-4a44-b714-dc5428d27848", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5a067839-e725-4185-bdf1-859bd8873e58", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -132350,24 +131604,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -132593,7 +131829,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-969570155601910380830420", + "batteryIDDMCCode" : "NO-136752824476347417416968", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -132612,31 +131848,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ade8bfe6-b776-4329-a2fc-4aded2f1e61b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e2344a5f-6e47-481f-a54f-8441a4db4c6e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -132651,11 +131903,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-04-17", + "currentStateOfHealthTimestamp" : "2017-01-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-15", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -132665,19 +131917,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "285930", + "orderNumber" : "824966", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -132688,12 +131940,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "6866", + "referencedStandard" : "EN", + "referencedStandardID" : "4776", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -132702,30 +131954,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -132740,7 +131992,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-565760403114294608440766", + "value" : "NO-496228919958328322723796", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -132751,7 +132003,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -132766,7 +132018,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", + "assetId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -132775,17 +132027,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c6397c41-3dc2-4daf-b3e4-58a709b0d2c4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:efe827f9-0a46-4938-ba3a-47b51c687048", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -132798,24 +132050,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -133041,7 +132275,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-565760403114294608440766", + "batteryIDDMCCode" : "NO-496228919958328322723796", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -133060,31 +132294,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50d17f64-0e6d-40b7-b42d-709b35f75a1e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fd7f8451-f07e-43a4-99fc-68a15d4c0348", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -133099,11 +132349,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-09-18", + "currentStateOfHealthTimestamp" : "2022-04-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-21", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -133113,35 +132363,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "339013", + "orderNumber" : "202813", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "8019", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4951", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -133153,11 +132403,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -133167,13 +132417,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -133188,7 +132438,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-549662913585943094603411", + "value" : "NO-093033786558024834039405", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -133199,7 +132449,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -133211,10 +132461,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", + "assetId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -133223,17 +132473,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:595e3365-624b-4ea1-9fca-7503bc7022d3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:dbd558d4-ed82-4c77-9b42-f68fed45b53f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -133246,24 +132496,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -133489,7 +132721,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-549662913585943094603411", + "batteryIDDMCCode" : "NO-093033786558024834039405", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -133508,31 +132740,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bb1e670-15c8-4de6-a4f6-64bda1c791e6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b14a8bbc-471b-42a5-ac31-d65e527cb894", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -133547,11 +132795,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-10-05", + "currentStateOfHealthTimestamp" : "2020-10-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-04-01", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -133561,35 +132809,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "809420", + "orderNumber" : "931320", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1978", + "referencedStandard" : "JIS", + "referencedStandardID" : "4061", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -133598,30 +132846,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -133636,7 +132884,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-221883872424118254324385", + "value" : "NO-350017826715088566619919", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -133647,7 +132895,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -133659,10 +132907,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", + "assetId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -133671,17 +132919,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c680e92a-0fb5-49ca-9f84-3917493662e6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4d4efc01-f9cf-483c-b3eb-bc79c0aa9ad7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -133694,24 +132942,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -133937,7 +133167,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-221883872424118254324385", + "batteryIDDMCCode" : "NO-350017826715088566619919", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -133956,31 +133186,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ba7fae0f-79d7-4ad3-8627-585c50788d43", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f52374a-db84-4e36-86f5-7bf31322bf35", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -133995,11 +133241,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-09-07", + "currentStateOfHealthTimestamp" : "2014-05-29", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -134009,14 +133255,14 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "586045", + "orderNumber" : "635092", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { @@ -134025,9 +133271,9 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -134036,8 +133282,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "2179", + "referencedStandard" : "JASO", + "referencedStandardID" : "1707", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -134048,12 +133294,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -134063,13 +133309,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -134084,7 +133330,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-361394052163820362674142", + "value" : "NO-477192556802942593241896", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -134095,7 +133341,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -134107,10 +133353,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", + "assetId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -134119,17 +133365,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f28b5152-b3d9-4510-90fe-080a4ce5ceb7", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1aea16c7-45c4-44fd-a3d3-91e86923c18b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -134142,24 +133388,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -134385,7 +133613,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-361394052163820362674142", + "batteryIDDMCCode" : "NO-477192556802942593241896", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -134404,31 +133632,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b378ce0c-adb5-4af8-9425-bee6fd86319d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:06be74e5-b240-4993-968a-ced4b98154ce", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -134443,11 +133687,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-08-29", + "currentStateOfHealthTimestamp" : "2024-02-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -134457,35 +133701,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "45934", + "orderNumber" : "533617", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "3486", + "referencedStandard" : "DIN", + "referencedStandardID" : "9684", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -134494,30 +133738,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -134532,7 +133776,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-405115524948461037888275", + "value" : "NO-063922441827556669651970", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -134543,7 +133787,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -134555,10 +133799,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", + "assetId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -134567,17 +133811,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9ec2fa8e-68ab-4d8a-9861-d6ae75494c06", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:42a07987-c479-4bb1-8486-77d646454b3b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -134590,24 +133834,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -134833,7 +134059,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-405115524948461037888275", + "batteryIDDMCCode" : "NO-063922441827556669651970", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -134852,31 +134078,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7673cf9-1daa-4036-b080-1d41f0d39d54", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:88c29cd0-50b0-4b4a-b123-e7437b2a2890", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -134891,11 +134133,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-27", + "currentStateOfHealthTimestamp" : "2020-02-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-29", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -134905,35 +134147,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "690236", + "orderNumber" : "179211", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN EN", - "referencedStandardID" : "9327", + "referencedStandardID" : "5444", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -134944,28 +134186,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -134980,7 +134222,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-687245070682008690060213", + "value" : "NO-911510362787579559079286", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -134991,7 +134233,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -135003,10 +134245,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", + "assetId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -135015,17 +134257,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f36d1321-7174-413b-a8b4-e7d77755c39e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:184fa6a0-a5b2-44b6-a703-8bbd0ee289c7", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -135038,24 +134280,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -135281,7 +134505,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-687245070682008690060213", + "batteryIDDMCCode" : "NO-911510362787579559079286", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -135300,31 +134524,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:17b3ad6f-edc8-4490-9a93-aec58f8f80bd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b068c467-00ea-4ec8-a83f-0f6355b7b8a7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -135339,11 +134579,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-20", + "currentStateOfHealthTimestamp" : "2017-10-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -135353,35 +134593,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "281167", + "orderNumber" : "119145", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "6658", + "referencedStandard" : "GB", + "referencedStandardID" : "9426", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -135393,7 +134633,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -135403,17 +134643,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -135428,7 +134668,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-153305463722086790275389", + "value" : "NO-154463244007109507380049", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -135439,7 +134679,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -135451,10 +134691,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", + "assetId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -135463,17 +134703,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:af2d2529-42b6-41d5-acaa-84b57eb40235", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:5a0b2dbf-5ba3-46c9-8f21-092ec918eb4a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -135486,24 +134726,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -135729,7 +134951,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153305463722086790275389", + "batteryIDDMCCode" : "NO-154463244007109507380049", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -135748,28 +134970,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70e89fff-8d11-470d-a0af-04072eebb816", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e09ea0c2-0251-4d32-bc51-3a3a8d2a17d9", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:26d4e130-6c90-44e9-b0b0-9f54d72c282a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:b815a3f2-4aee-481f-b1f3-b0b81ee061ab", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 67, + "recycledContent" : 78, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -135779,7 +135017,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 25, + "recycledContent" : 2, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -135789,7 +135027,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 52, + "recycledContent" : 16, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -135800,112 +135038,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -135913,35 +135151,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "50016", + "orderNumber" : "903441", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2244", + "referencedStandard" : "ISO", + "referencedStandardID" : "8732", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -135953,11 +135191,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -135967,13 +135205,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -135988,7 +135226,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-973954279957624820638186", + "value" : "NO-572372710040873558705452", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -135999,7 +135237,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -136014,7 +135252,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", + "assetId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -136023,17 +135261,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1678866b-7393-4244-8b51-de9a08dc2f80", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:ff94687a-1418-476a-bd4b-11bcafffb6d5", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136042,17 +135280,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9d75d3ce-c3ec-4244-87f0-019b0c06a5ce", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:9ff6fde6-d24f-4c79-bd06-513f8034a650", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "childassetId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136061,17 +135299,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8103a66c-3e8e-4df3-b7e9-fd1ee82f538b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:404d30f1-f126-4dae-80e4-302a0e1798d6", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "childassetId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136080,17 +135318,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:38967ae6-bdaa-4e04-ade3-a6cd43cc650f", + "ownerItemId" : "urn:uuid:d14c7363-5c3e-4536-a45a-b104a5bc64ef", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "childassetId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136099,17 +135337,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:69d13cd3-847b-4c1b-be63-6c58e96f201c", + "ownerItemId" : "urn:uuid:08fcfe3e-080b-4428-b74c-aa3b20f73cdd", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "childassetId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136118,17 +135356,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0b2aeb67-2cf1-4420-9274-79c04c22fdf0", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:114df359-9728-4a35-b6c6-379a7f658355", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "childassetId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136137,17 +135375,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7611fea4-7121-4d4c-a6df-ea1a42551d72", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8f85f1fe-64e2-4fa2-ae4d-97029d6f6e2e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "childassetId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136156,17 +135394,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cb034949-ec53-47ea-ad08-52150fedbdf0", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:54b1b2cc-1943-4c58-9f3e-cbd7faa92096", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "childassetId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136175,17 +135413,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:02f01928-7865-4497-9c0e-0dda7c851f2d", + "ownerItemId" : "urn:uuid:37ed351b-c881-4b91-a8d4-38fdbdc95047", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "childassetId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136194,17 +135432,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ce248ff3-dd7c-49ee-ae10-a20474aa3758", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:df149bc7-bb78-46c9-b980-888130869804", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "childassetId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -136213,38 +135451,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:08db6c8d-c7c7-435a-8bac-229ad5ace3a3", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:58383027-1107-4748-810e-e81a1fa44ede", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "childassetId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -136470,7 +135690,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-973954279957624820638186", + "batteryIDDMCCode" : "NO-572372710040873558705452", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -136512,13 +135732,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2021-04-25", - "version" : 1.5, - "status" : "Expired" + "issueDate" : "2022-06-06", + "version" : 1.2, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6918, + "diameter" : 229.628, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -136526,22 +135746,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2021-03-29", + "placedOnMarket" : "2021-04-11", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-973954279957624820638186", + "value" : "NO-572372710040873558705452", "key" : "PartInstanceID" } ], - "gtin" : " 24293609", + "gtin" : " 38708173", "additionalCode" : [ { "name" : "TARIC", - "value" : "532048433" + "value" : "914038656" } ] }, "sources" : { @@ -136563,7 +135783,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "Passport", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -136592,12 +135812,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2022-10-06", + "date" : "2022-06-25", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -136608,9 +135828,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.1058 ] + "left" : [ 6.6738 ] }, - "id" : "WX3550" + "id" : "VM1276" } ] }, "additionalData" : [ { @@ -136636,9 +135856,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Copper" + "name" : "Cobalt" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Manganese" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -136648,14 +135868,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 118 + "carbonContentTotal" : 116 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003AXS3", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -136668,31 +135888,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -136707,11 +135943,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-22", + "currentStateOfHealthTimestamp" : "2015-12-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -136721,35 +135957,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "951213", + "orderNumber" : "285061", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "9847", + "referencedStandard" : "JASO", + "referencedStandardID" : "1342", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -136758,30 +135994,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -136796,7 +136032,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-992195203154788914340114", + "value" : "NO-203671166348709875780872", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -136807,7 +136043,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -136819,10 +136055,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", + "assetId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -136831,17 +136067,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ee06ec61-d892-4f5e-9dbe-5c420fc45df5", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:1f1240ae-6c79-459f-9511-8525109d0d9c", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -136854,24 +136090,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -137097,7 +136315,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-992195203154788914340114", + "batteryIDDMCCode" : "NO-203671166348709875780872", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -137116,31 +136334,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7756c5b9-9dd2-4ecb-a024-849aa731a78a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8f86d47f-3e4c-4f79-949c-14f77acbd086", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -137155,11 +136389,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-07-24", + "currentStateOfHealthTimestamp" : "2015-09-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -137169,35 +136403,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "310623", + "orderNumber" : "996777", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "5436", + "referencedStandard" : "ISO", + "referencedStandardID" : "8987", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -137206,20 +136440,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -137244,7 +136478,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-347677125419085124787924", + "value" : "NO-931937961024578613536361", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -137255,7 +136489,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -137267,10 +136501,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", + "assetId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -137279,17 +136513,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ab0b6060-309c-47a6-9fa1-d012c1a1aace", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2bd93ea6-f614-472e-b5af-a421869d6937", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -137302,24 +136536,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -137545,7 +136761,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-347677125419085124787924", + "batteryIDDMCCode" : "NO-931937961024578613536361", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -137564,31 +136780,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d7ff2afa-51db-4956-af3c-1928b683ac14", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9be06c64-fb59-4815-9942-70459a58583f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -137603,11 +136835,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-06-12", + "currentStateOfHealthTimestamp" : "2021-06-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -137617,10 +136849,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "890064", + "orderNumber" : "39612", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -137633,7 +136865,7 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -137644,8 +136876,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1846", + "referencedStandard" : "ASME", + "referencedStandardID" : "7630", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -137657,21 +136889,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -137692,7 +136924,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-758372629663542271212580", + "value" : "NO-680434833839072796102873", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -137703,7 +136935,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -137718,7 +136950,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", + "assetId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -137727,17 +136959,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:41d8fcb1-775d-4d41-b181-2bb7070835d2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:08d48088-fe4a-4345-8202-d8a5d44fe1dc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -137750,24 +136982,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -137993,7 +137207,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-758372629663542271212580", + "batteryIDDMCCode" : "NO-680434833839072796102873", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -138012,31 +137226,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b719d933-2797-491f-8c62-83d83a9e06dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c6cd4e08-cab6-422b-9031-d683c341646b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -138051,11 +137281,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-18", + "currentStateOfHealthTimestamp" : "2018-10-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -138065,35 +137295,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "616887", + "orderNumber" : "444445", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6569", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6783", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -138102,14 +137332,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -138119,7 +137349,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -138140,7 +137370,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-235749068781688754853632", + "value" : "NO-475960552493004844235088", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -138151,7 +137381,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -138166,7 +137396,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", + "assetId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -138175,17 +137405,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:66cb1026-6c8a-42fa-998c-b5d777f2dd98", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:877c48ac-be8c-4c6b-9978-bd4b1efb54bd", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -138198,24 +137428,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -138441,7 +137653,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-235749068781688754853632", + "batteryIDDMCCode" : "NO-475960552493004844235088", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -138460,31 +137672,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2267f417-8fd9-41bc-906e-3c37c489499f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:10fbfcc2-09d0-4243-93d6-25660b4dac4d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -138499,11 +137727,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-12", + "currentStateOfHealthTimestamp" : "2022-03-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-04", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -138513,10 +137741,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "880788", + "orderNumber" : "136854", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -138525,23 +137753,23 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8878", + "referencedStandard" : "ASME", + "referencedStandardID" : "4314", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -138550,30 +137778,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -138588,7 +137816,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-637522255197238915757394", + "value" : "NO-882877641360870571303386", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -138599,7 +137827,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -138611,10 +137839,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", + "assetId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -138623,17 +137851,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:47f03566-7c54-4ace-968d-8b3580ed8a41", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:edda4b9c-5749-4b25-9851-2bcd794aa74e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -138646,24 +137874,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -138889,7 +138099,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-637522255197238915757394", + "batteryIDDMCCode" : "NO-882877641360870571303386", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -138908,31 +138118,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0c768145-46c7-4c17-b337-8ca97bcc40ea", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:548fbabe-1e7b-4b08-a917-36782d4a5b15", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -138947,11 +138173,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-02-24", + "currentStateOfHealthTimestamp" : "2020-11-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -138961,35 +138187,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "459310", + "orderNumber" : "503404", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "GB", - "referencedStandardID" : "9876", + "referencedStandardID" : "2545", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -139001,21 +138227,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -139036,7 +138262,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-013538992992080944605829", + "value" : "NO-297888230884067807374076", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -139047,7 +138273,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -139059,10 +138285,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", + "assetId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -139071,17 +138297,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:26d4a0c1-dfb8-4c72-a987-f1f189af44bd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3d9645f8-8fc9-4c6e-93e4-97794c8ec5ba", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -139094,24 +138320,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -139337,7 +138545,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-013538992992080944605829", + "batteryIDDMCCode" : "NO-297888230884067807374076", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -139356,31 +138564,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee5eccfa-dde6-40b4-a1be-4de059a16ca0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c657a87d-d2e2-4641-9ef6-a14501b766e6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -139395,11 +138619,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-06-10", + "currentStateOfHealthTimestamp" : "2023-11-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-25", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -139409,35 +138633,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "800341", + "orderNumber" : "767225", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6894", + "referencedStandard" : "AISI", + "referencedStandardID" : "1628", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -139449,27 +138673,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -139484,7 +138708,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-642680594659421069431919", + "value" : "NO-853195758402311021260255", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -139495,7 +138719,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -139507,10 +138731,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", + "assetId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -139519,17 +138743,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a9d5cb5b-3789-4848-a789-4c2867767a16", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:5bf69641-2f2d-44f0-97b2-568383e364ff", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -139542,24 +138766,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -139785,7 +138991,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-642680594659421069431919", + "batteryIDDMCCode" : "NO-853195758402311021260255", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -139804,31 +139010,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5952c05a-e2ba-4fa7-875c-dd92dc6fcaf4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5724ca7d-8bdd-4051-b7aa-8797c9dacbe7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -139843,11 +139065,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-08-18", + "currentStateOfHealthTimestamp" : "2014-10-19", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-24", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -139857,35 +139079,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "550091", + "orderNumber" : "843057", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "6258", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6807", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -139894,30 +139116,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -139932,7 +139154,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-827788544499292219780017", + "value" : "NO-260332478775863502688771", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -139943,7 +139165,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -139958,7 +139180,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", + "assetId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -139967,17 +139189,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:53d01b82-7d7d-40db-b4fb-787bd6d7696a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:3ab2783b-3b8d-4bee-bda7-0fc34c6a7352", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -139990,24 +139212,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -140233,7 +139437,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-827788544499292219780017", + "batteryIDDMCCode" : "NO-260332478775863502688771", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -140252,31 +139456,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ee9976a9-e4b8-4881-8d0f-e8ce5d673fd5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fca6bc5d-af4d-424a-a7cc-1a400d6b4153", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -140291,11 +139511,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-02-01", + "currentStateOfHealthTimestamp" : "2019-04-30", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -140305,25 +139525,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "360508", + "orderNumber" : "271998", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -140332,8 +139552,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "1156", + "referencedStandard" : "ASME", + "referencedStandardID" : "4703", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -140342,14 +139562,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -140359,13 +139579,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -140380,7 +139600,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-051211648132031036055007", + "value" : "NO-519038155525589438619631", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -140391,7 +139611,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -140403,10 +139623,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", + "assetId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -140415,17 +139635,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9f463c75-5ea6-4f5b-89c8-1d3783be1a54", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c4166d4f-6cd5-4fa6-973d-4491fedbf961", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -140438,24 +139658,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -140681,7 +139883,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-051211648132031036055007", + "batteryIDDMCCode" : "NO-519038155525589438619631", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -140700,31 +139902,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0f2b4b2d-d60a-4962-82f2-024e5b937425", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6b6cffee-9566-44d3-9424-341e65df404c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -140739,11 +139957,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-11-19", + "currentStateOfHealthTimestamp" : "2017-05-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -140753,10 +139971,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "501372", + "orderNumber" : "426388", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -140765,23 +139983,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "8190", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7104", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -140790,30 +140008,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -140828,7 +140046,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-274639447767522987739067", + "value" : "NO-992573505811578278902838", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -140839,7 +140057,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -140851,10 +140069,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", + "assetId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -140863,17 +140081,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:429ccd5f-2019-41d4-ae7b-20aacb54238a", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:1e1b3153-f470-47c3-9a90-30c5e4d9fa3d", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -140886,24 +140104,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -141129,7 +140329,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-274639447767522987739067", + "batteryIDDMCCode" : "NO-992573505811578278902838", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -141148,28 +140348,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7a57bdf-f625-468b-b03a-5d5457d810a4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:81c38fba-ecc1-45b9-a4cb-0441cc348ad1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b7d04c2-94db-4acf-85c3-707fb486d6f8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:22bff5e8-d5ba-4402-bbde-ef151dc8d917", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 53, + "recycledContent" : 16, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -141179,7 +140395,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 54, + "recycledContent" : 58, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -141189,7 +140405,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 59, + "recycledContent" : 60, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -141200,112 +140416,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -141313,25 +140529,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "446905", + "orderNumber" : "294830", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -141340,8 +140556,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "1337", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "1431", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -141350,30 +140566,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -141388,7 +140604,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-866219940925227686334114", + "value" : "NO-969960797989408938117141", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -141399,7 +140615,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -141411,10 +140627,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", + "assetId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -141423,17 +140639,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3a22d8ba-a7be-4a60-bb38-f04cb3ab487e", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:590bfaf9-1900-4130-86a7-862ae93e1e01", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141442,17 +140658,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bc792b88-9b63-4a83-b291-e3753ce78079", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a27a1b70-7f76-41e5-9621-d2cff64dcf5e", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "childassetId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141461,17 +140677,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:766ac4da-face-4c72-ad81-0ff2d8454d60", + "ownerItemId" : "urn:uuid:77f4ba6b-ced7-430e-8083-53a3e9f55234", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "childassetId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141480,17 +140696,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8b5c1cc1-8da2-4043-8454-a4fd263639a7", + "ownerItemId" : "urn:uuid:87d98e01-5dd8-402c-8309-92e286f09e7b", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "childassetId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141499,17 +140715,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:17e49d1a-b12d-465f-988f-f60722b5de24", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:e8d5afb0-508e-4321-96ee-806db55c3143", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "childassetId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141518,17 +140734,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:38bf8a9a-c7a0-474b-a7de-5e9e6217997d", + "ownerItemId" : "urn:uuid:18fadaf3-40fc-4b0e-a084-d2178a3a02cb", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "childassetId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141537,17 +140753,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:80dacd9f-01ae-45e2-8fff-faf462043825", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:32b93592-3e9f-4808-9e59-5ca1971acad7", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "childassetId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141556,17 +140772,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:487fd997-6f52-4de3-8256-56a5e3e8d572", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:04ae6cea-45c8-464f-8001-d4dd4fcd246a", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "childassetId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141575,17 +140791,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d688d80f-388f-430a-b99a-afb8e785c2d9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:657fa211-3a15-4cf4-9d30-0dfa50581f36", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "childassetId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141594,17 +140810,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7d159ee5-594a-4922-a4c6-16e178bfaeaa", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:75d988b1-8cb8-40c6-bd5f-a54e40f32c1e", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "childassetId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -141613,38 +140829,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:35adc373-22a3-4322-af7f-88f98d763e20", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:6dc38c9f-ccf2-47e7-adbb-ae9fb4ee8b5b", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "childassetId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -141870,7 +141068,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-866219940925227686334114", + "batteryIDDMCCode" : "NO-969960797989408938117141", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -141912,13 +141110,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2023-07-27", - "version" : 2.4, - "status" : "Expired" + "issueDate" : "2024-01-08", + "version" : 1.9, + "status" : "Invalid" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6521, + "diameter" : 229.62879999999998, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -141926,22 +141124,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 19 + "value" : 15 } }, "commercial" : { - "placedOnMarket" : "2023-03-28", + "placedOnMarket" : "2023-12-02", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-866219940925227686334114", + "value" : "NO-969960797989408938117141", "key" : "PartInstanceID" } ], - "gtin" : " 19599333", + "gtin" : " 28084015", "additionalCode" : [ { "name" : "TARIC", - "value" : "857042567" + "value" : "787569704" } ] }, "sources" : { @@ -141963,7 +141161,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -141992,7 +141190,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-01-03", + "date" : "2024-02-05", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -142008,9 +141206,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.8125 ] + "left" : [ 2.6735 ] }, - "id" : "WS5730" + "id" : "SH8613" } ] }, "additionalData" : [ { @@ -142036,7 +141234,7 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Insulator" + "name" : "Nickel" } ], "critical" : [ "Manganese" ], "carbonFootprint" : { @@ -142048,12 +141246,12 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 106 + "carbonContentTotal" : 109 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003AYRE", "manufacturer" : { "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" @@ -142068,31 +141266,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -142107,11 +141321,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-11-17", + "currentStateOfHealthTimestamp" : "2020-11-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -142121,25 +141335,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "593779", + "orderNumber" : "226053", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -142149,7 +141363,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "AISI", - "referencedStandardID" : "6516", + "referencedStandardID" : "3867", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -142160,7 +141374,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { @@ -142171,11 +141385,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -142196,7 +141410,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-372384834342259220312175", + "value" : "NO-226023691045065437700437", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -142207,7 +141421,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -142219,10 +141433,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", + "assetId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -142231,17 +141445,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e90a86a6-b620-446e-8d31-3ba294e2e6a2", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:28dcbd46-337b-416a-82f4-153ce80a54e6", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -142254,24 +141468,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -142497,7 +141693,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-372384834342259220312175", + "batteryIDDMCCode" : "NO-226023691045065437700437", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -142516,31 +141712,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1bb414f9-8c2e-445c-a601-13f38bb8ed7f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:175b6480-ba68-4c4c-aae4-0c1db21e7789", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -142555,11 +141767,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-11-15", + "currentStateOfHealthTimestamp" : "2021-02-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -142569,35 +141781,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "810678", + "orderNumber" : "390018", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "1229", + "referencedStandardID" : "7265", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -142609,21 +141821,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -142644,7 +141856,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-088469934382593208474125", + "value" : "NO-638900391984588996515049", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -142655,7 +141867,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -142670,7 +141882,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", + "assetId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -142679,17 +141891,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4197d8ec-b394-47b6-a0f5-cc6cf0f42944", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d2248c3d-60e9-49eb-b954-f7a2a29d69cf", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -142702,24 +141914,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -142945,7 +142139,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-088469934382593208474125", + "batteryIDDMCCode" : "NO-638900391984588996515049", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -142964,31 +142158,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ff5fe639-b7ca-45de-8217-acc0ec22bd85", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:84cb61d6-450c-4551-aa05-4940692de5fb", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -143003,11 +142213,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-10-25", + "currentStateOfHealthTimestamp" : "2019-06-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-08", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -143017,35 +142227,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "670796", + "orderNumber" : "436020", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "2316", + "referencedStandard" : "JASO", + "referencedStandardID" : "7825", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -143057,27 +142267,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -143092,7 +142302,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-767840854500043743649525", + "value" : "NO-057830015270560165419091", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -143103,7 +142313,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -143118,7 +142328,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", + "assetId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -143127,17 +142337,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:00005e49-d0e9-44bc-9cf5-e8da99fba448", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:424d9bb2-3926-47cc-8c13-8705a0b0459e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -143150,24 +142360,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -143393,7 +142585,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-767840854500043743649525", + "batteryIDDMCCode" : "NO-057830015270560165419091", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -143412,31 +142604,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9c0a4d8b-d50a-47ea-824d-98c99bf6d991", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8ebcd460-79a1-439a-a38a-18316553e7e7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -143451,11 +142659,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-09-14", + "currentStateOfHealthTimestamp" : "2024-01-27", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -143465,35 +142673,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "945397", + "orderNumber" : "322333", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8121", + "referencedStandard" : "GB", + "referencedStandardID" : "3965", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -143509,7 +142717,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -143519,13 +142727,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -143540,7 +142748,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-079329468576037813719169", + "value" : "NO-557472139690957066309926", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -143551,7 +142759,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -143563,10 +142771,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", + "assetId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -143575,17 +142783,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f90e61b6-edf5-4385-b9d0-e6713103ccc9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:48a5294e-6b0a-40e2-a6c7-564069f3b34b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -143598,24 +142806,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -143841,7 +143031,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-079329468576037813719169", + "batteryIDDMCCode" : "NO-557472139690957066309926", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -143860,31 +143050,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6886710b-f31e-4476-95eb-a6be8b5d8dd1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:485aca52-3268-4ea4-bd4e-100b9b64c3d1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -143899,11 +143105,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-28", + "currentStateOfHealthTimestamp" : "2020-10-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -143913,35 +143119,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "814586", + "orderNumber" : "247258", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "4609", + "referencedStandard" : "ASME", + "referencedStandardID" : "9810", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -143950,14 +143156,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -143973,7 +143179,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -143988,7 +143194,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-860984087418700593268333", + "value" : "NO-105696138826998999306110", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -143999,7 +143205,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -144014,7 +143220,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", + "assetId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -144023,17 +143229,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0b9d3361-1e9f-47ec-be20-1713fa59ec31", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:71fbb941-bc6d-4703-81a8-a612d60f3307", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -144046,24 +143252,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -144289,7 +143477,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-860984087418700593268333", + "batteryIDDMCCode" : "NO-105696138826998999306110", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -144308,31 +143496,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1ba3e5d4-407e-4673-aa54-52d858bce7cf", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:caeffac4-63af-4773-8bc6-0d4ec3dc5c29", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -144347,11 +143551,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-07-20", + "currentStateOfHealthTimestamp" : "2015-02-22", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-24", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -144361,35 +143565,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "47731", + "orderNumber" : "308773", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 25 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9755", + "referencedStandard" : "AS", + "referencedStandardID" : "5818", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -144401,17 +143605,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -144421,7 +143625,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -144436,7 +143640,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-588045754284188865698792", + "value" : "NO-431377886995083541391036", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -144447,7 +143651,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -144459,10 +143663,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", + "assetId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -144471,17 +143675,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f09ff04f-923e-446a-bee2-43d9e1e17e4a", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:d4eee47a-73b3-40ba-ae58-354ab0a8568e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -144494,24 +143698,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -144737,7 +143923,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-588045754284188865698792", + "batteryIDDMCCode" : "NO-431377886995083541391036", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -144756,31 +143942,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:138d6978-b2e2-4703-918a-3dfcdd1b419f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6bcdb3b5-a613-4205-834d-4237ecffc8f9", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -144795,11 +143997,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-08-21", + "currentStateOfHealthTimestamp" : "2015-10-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -144809,35 +144011,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "459658", + "orderNumber" : "285609", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 6 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2536", + "referencedStandard" : "DIN", + "referencedStandardID" : "9452", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -144846,10 +144048,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -144859,17 +144061,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -144884,7 +144086,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-473896456356548303789394", + "value" : "NO-606201604140904906173351", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -144895,7 +144097,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -144907,10 +144109,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", + "assetId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -144919,17 +144121,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:800e224f-deb1-49ab-9b96-b839f98dcfc6", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:a8fae02a-691a-455a-9c79-b34e16dd0216", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -144942,24 +144144,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -145185,7 +144369,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-473896456356548303789394", + "batteryIDDMCCode" : "NO-606201604140904906173351", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -145204,31 +144388,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1a609fb1-8a53-4853-8c5f-97bb00e0486b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b5b38ae4-2eb0-4760-bec0-a755b90ea981", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -145243,11 +144443,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-04", + "currentStateOfHealthTimestamp" : "2016-01-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -145257,35 +144457,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "524027", + "orderNumber" : "108369", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "3450", + "referencedStandard" : "DIN", + "referencedStandardID" : "7246", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -145301,17 +144501,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -145332,7 +144532,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-352472143033398477945379", + "value" : "NO-914462774318298044622010", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -145343,7 +144543,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -145355,10 +144555,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", + "assetId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -145367,17 +144567,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3f12b395-5e31-415e-a84f-2f0a9af0d78c", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:386fe572-fa93-4bbd-b8d4-b55f423c95df", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -145390,24 +144590,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -145633,7 +144815,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-352472143033398477945379", + "batteryIDDMCCode" : "NO-914462774318298044622010", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -145652,31 +144834,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:816c7c23-cce3-4115-8cd3-411a721df66d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fa2a6ffb-8582-4ef0-9e5f-1660ac70d671", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -145691,11 +144889,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-05-08", + "currentStateOfHealthTimestamp" : "2018-03-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-15", + "currentStateOfHealthTimestamp" : "2024-03-28", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -145705,35 +144903,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "320239", + "orderNumber" : "157027", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "4640", + "referencedStandardID" : "8200", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -145744,28 +144942,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -145780,7 +144978,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-536814342114624374891194", + "value" : "NO-195859396927351391264231", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -145791,7 +144989,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -145803,10 +145001,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", + "assetId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -145815,17 +145013,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:aef1b00c-7fa1-415d-b7bc-553eedd82fb6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:c34e2f2b-d042-4c2d-b008-e2c6efc14b8a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -145838,24 +145036,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -146081,7 +145261,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-536814342114624374891194", + "batteryIDDMCCode" : "NO-195859396927351391264231", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -146100,31 +145280,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:79f7a06d-adb7-4f23-9e17-d2c21b10bcf6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:68002a94-6979-4c74-8806-3fee2e69335f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -146139,11 +145335,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-02-12", + "currentStateOfHealthTimestamp" : "2022-09-26", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -146153,35 +145349,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "992855", + "orderNumber" : "664071", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4053", + "referencedStandard" : "GB", + "referencedStandardID" : "2207", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -146192,18 +145388,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -146213,7 +145409,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -146228,7 +145424,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-535040345656499211042489", + "value" : "NO-889687688845816961721724", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -146239,7 +145435,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -146251,10 +145447,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", + "assetId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -146263,17 +145459,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7f8ce7da-bd67-4909-862c-17f574d7f2fc", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:064bc648-d35d-49e4-824a-c2c304a1bb28", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -146286,24 +145482,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -146529,7 +145707,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-535040345656499211042489", + "batteryIDDMCCode" : "NO-889687688845816961721724", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -146548,28 +145726,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9b59adb4-cf1f-4c0c-bceb-190794d2dd49", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:f5c73400-a5b0-46e0-a698-f5d3bc01cf76", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b423dcba-606d-477a-8d42-2f4f2293539e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f3d85192-4e65-4d8a-bbbf-8945036cf958", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 6, + "recycledContent" : 51, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -146579,7 +145773,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 84, + "recycledContent" : 68, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -146589,7 +145783,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 17, + "recycledContent" : 21, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -146600,112 +145794,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -146713,35 +145907,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "461716", + "orderNumber" : "805627", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 7 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2220", + "referencedStandard" : "IS", + "referencedStandardID" : "2452", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -146752,28 +145946,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -146788,7 +145982,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-770181704086780547564889", + "value" : "NO-857631194932419190104530", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -146799,7 +145993,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -146811,10 +146005,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", + "assetId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -146823,17 +146017,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0f205c69-39ca-43af-b148-d51cd1e45ed6", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:fdbd717a-02c6-47c5-8701-dc2f07d8909a", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146842,17 +146036,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a6f9d394-aee1-4d52-9fee-de07a68edd6f", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:ac15a4cd-46ca-4c81-85e9-6fb8c561ffc1", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "childassetId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146861,17 +146055,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:e57b2b4c-0859-4bb1-a1e1-69565716e8f4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:011543b1-cfd9-47a3-bb32-ff8090b1e455", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "childassetId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146880,17 +146074,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:311b83f6-d424-4de7-ae16-8bb8d307e71b", + "ownerItemId" : "urn:uuid:2966040a-cfde-4e83-b8c0-f4ebb325b0f4", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "childassetId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146899,17 +146093,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:1d868cd3-c65f-403c-af92-e95e90a61b4b", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:044c4b17-ff63-4899-8a37-23ea72fd1c57", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "childassetId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146918,17 +146112,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a61387e4-1f80-4757-b73a-66e5a8186725", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:fda2808a-2930-463a-9b98-dd2e818e4995", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "childassetId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146937,17 +146131,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4b8b2fcb-52f1-4639-98e0-16e8169e38f0", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:74d8e2e0-5b94-420a-843c-7ffbb18a96c6", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "childassetId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146956,17 +146150,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b5fd97e1-0d5c-4b56-adea-2145c7ffd167", + "ownerItemId" : "urn:uuid:e5e4f4ab-a974-4fe7-ae47-b26071fe075b", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "childassetId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146975,17 +146169,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ad2d63d7-6a30-461b-8bbe-a2cd06448f81", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:eead4648-172e-44f6-830d-c06bafd68e08", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "childassetId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -146994,17 +146188,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b99634df-2aa0-4fce-866e-e7222add942d", + "ownerItemId" : "urn:uuid:4f9b4ac0-d791-4de9-b257-d48fbad1254f", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "childassetId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -147013,38 +146207,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a7ef4402-9df8-4c4d-b9cd-790bcdb482b9", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:0ddbd000-da57-4570-aae7-c83bc652e2de", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "childassetId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -147270,7 +146446,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-770181704086780547564889", + "batteryIDDMCCode" : "NO-857631194932419190104530", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -147312,13 +146488,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2023-06-19", + "issueDate" : "2022-12-19", "version" : 2, - "status" : "Approved" + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6676, + "diameter" : 229.6423, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -147326,22 +146502,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 18 } }, "commercial" : { - "placedOnMarket" : "2023-02-05", + "placedOnMarket" : "2022-01-25", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-770181704086780547564889", + "value" : "NO-857631194932419190104530", "key" : "PartInstanceID" } ], - "gtin" : " 86400073", + "gtin" : " 52934163", "additionalCode" : [ { "name" : "TARIC", - "value" : "421133551" + "value" : "631567863" } ] }, "sources" : { @@ -147392,7 +146568,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-08-30", + "date" : "2022-12-25", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -147408,9 +146584,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 6.1438 ] + "left" : [ 6.6997 ] }, - "id" : "GR3626" + "id" : "SN7990" } ] }, "additionalData" : [ { @@ -147433,12 +146609,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Sealant" + "name" : "Aluminium" } ], - "critical" : [ "Manganese" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -147448,14 +146624,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 116 + "carbonContentTotal" : 106 }, "state" : "first life" }, "operation" : { "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003AXS3", "manufacturerId" : "BPNL00000003AYRE" } } @@ -147468,31 +146644,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -147507,11 +146699,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-26", + "currentStateOfHealthTimestamp" : "2020-12-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-16", + "currentStateOfHealthTimestamp" : "2024-03-16", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -147521,35 +146713,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "46035", + "orderNumber" : "509062", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 24 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5621", + "referencedStandard" : "AS", + "referencedStandardID" : "1877", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -147561,7 +146753,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -147571,17 +146763,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -147596,7 +146788,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-576353883553719482494985", + "value" : "NO-033187291802612240488116", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -147607,7 +146799,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -147619,10 +146811,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", + "assetId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -147631,17 +146823,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:20fb0219-2f09-4ace-8ac8-6190b4eaf8e8", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:cc39df75-1cb7-42a6-9e38-6c38509439e5", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -147654,24 +146846,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -147897,7 +147071,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-576353883553719482494985", + "batteryIDDMCCode" : "NO-033187291802612240488116", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -147916,31 +147090,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:819fb3b3-d507-49e9-8ead-d9a0172ff509", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9b9bad6c-b892-4080-bc9f-db7dd40abc1b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -147955,11 +147145,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-06-22", + "currentStateOfHealthTimestamp" : "2020-09-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -147969,35 +147159,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "939508", + "orderNumber" : "138481", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1305", + "referencedStandard" : "ISO", + "referencedStandardID" : "9337", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -148006,20 +147196,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -148029,7 +147219,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -148044,7 +147234,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-314815112889745255848637", + "value" : "NO-763258057586760595189315", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -148055,7 +147245,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -148067,10 +147257,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", + "assetId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -148079,17 +147269,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:418dae1c-9e55-4334-92e4-37696a809049", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0788b75f-7f06-40cf-b4f0-318ef9b18dfa", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -148102,24 +147292,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -148345,7 +147517,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-314815112889745255848637", + "batteryIDDMCCode" : "NO-763258057586760595189315", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -148364,31 +147536,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e26fbc50-ffcc-4cce-8452-3349a2cf0e10", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:47e47445-87d1-4ece-b49a-fd871d01e0fa", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -148403,11 +147591,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-25", + "currentStateOfHealthTimestamp" : "2015-10-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-20", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -148417,35 +147605,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "503315", + "orderNumber" : "470213", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3063", + "referencedStandard" : "AS", + "referencedStandardID" : "5128", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -148454,30 +147642,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -148492,7 +147680,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-053115580491418530649598", + "value" : "NO-807719426538390909952668", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -148503,7 +147691,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -148518,7 +147706,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", + "assetId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -148527,17 +147715,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:72bf08bc-b2d5-4bc5-9288-78c02792b85e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e14c0a52-161e-41ca-a7e8-f13f93a32b5b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -148550,24 +147738,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -148793,7 +147963,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-053115580491418530649598", + "batteryIDDMCCode" : "NO-807719426538390909952668", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -148812,31 +147982,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f666c923-8ce1-4165-a2f8-64ab82cbab72", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0538ccd1-2ac1-4e62-bd59-828e8c85a21c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -148851,11 +148037,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-29", + "currentStateOfHealthTimestamp" : "2014-12-04", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -148865,16 +148051,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "91565", + "orderNumber" : "906131", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 @@ -148883,7 +148069,7 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -148892,8 +148078,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1441", + "referencedStandard" : "JIS", + "referencedStandardID" : "8766", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -148902,30 +148088,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -148940,7 +148126,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-254757851873936956103930", + "value" : "NO-124938441622083380062715", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -148951,7 +148137,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -148963,10 +148149,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", + "assetId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -148975,17 +148161,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0eaef2be-8da2-45b9-8760-803608eaf870", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:99bf36b0-f6c4-4d5f-a37c-75856843966f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -148998,24 +148184,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -149241,7 +148409,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-254757851873936956103930", + "batteryIDDMCCode" : "NO-124938441622083380062715", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -149260,31 +148428,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:94466a99-6106-41a4-9ebe-767dc2539d1b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fbda5f20-df4e-4277-b903-2fa43b12f6e2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -149299,11 +148483,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-01-20", + "currentStateOfHealthTimestamp" : "2019-06-07", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-01", + "currentStateOfHealthTimestamp" : "2024-03-18", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -149313,25 +148497,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "850720", + "orderNumber" : "605459", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -149341,7 +148525,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "EN", - "referencedStandardID" : "2230", + "referencedStandardID" : "2294", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -149350,20 +148534,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -149373,7 +148557,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -149388,7 +148572,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-316542918139942968601736", + "value" : "NO-253736684644667524930063", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -149399,7 +148583,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -149411,10 +148595,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", + "assetId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -149423,17 +148607,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:287ee7a7-9af3-4416-afbd-27b90f68d150", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:e74670e7-671f-402a-bc33-227c96896ec4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -149446,24 +148630,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -149689,7 +148855,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-316542918139942968601736", + "batteryIDDMCCode" : "NO-253736684644667524930063", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -149708,31 +148874,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6533a393-f8d2-47a2-98b2-cc49948077c1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f08af5c6-de86-4637-bdb3-d3ae01da0d0e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -149747,11 +148929,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2024-01-22", + "currentStateOfHealthTimestamp" : "2020-09-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-29", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -149761,35 +148943,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "180324", + "orderNumber" : "532771", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "4767", + "referencedStandard" : "EN", + "referencedStandardID" : "9865", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -149798,10 +148980,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -149811,7 +148993,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -149836,7 +149018,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-145334258560133215613931", + "value" : "NO-931077905564998045847086", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -149847,7 +149029,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -149859,10 +149041,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", + "assetId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -149871,17 +149053,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6b356ed3-6029-4a66-9cc3-020505e70d73", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c81d3d56-ddaa-45f0-b0db-06f18ff1f828", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -149894,24 +149076,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -150137,7 +149301,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-145334258560133215613931", + "batteryIDDMCCode" : "NO-931077905564998045847086", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -150156,31 +149320,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:685abc0c-193e-41c8-970b-c7256c7db0a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:53c85bb3-461b-44ac-9dfb-dd1fca026f03", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -150195,11 +149375,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-11", + "currentStateOfHealthTimestamp" : "2015-01-23", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -150209,35 +149389,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "199207", + "orderNumber" : "644156", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3283", + "referencedStandard" : "IS", + "referencedStandardID" : "1355", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -150248,8 +149428,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -150259,17 +149439,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -150284,7 +149464,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-190658911471063410526864", + "value" : "NO-642827238001626781850767", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -150295,7 +149475,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -150310,7 +149490,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", + "assetId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -150319,17 +149499,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9e79a5b3-9dca-4d40-a1b3-5843bbb318b2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:7a4b076b-4de0-4a28-8d9f-943836e128b1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -150342,24 +149522,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -150585,7 +149747,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-190658911471063410526864", + "batteryIDDMCCode" : "NO-642827238001626781850767", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -150604,31 +149766,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:57522790-652d-429e-8fd1-ddc8f396d237", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:a5a378b5-758f-40ec-ba92-7665a13281ce", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -150643,11 +149821,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-07-30", + "currentStateOfHealthTimestamp" : "2017-04-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-17", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -150657,10 +149835,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "523247", + "orderNumber" : "545633", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -150669,23 +149847,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4993", + "referencedStandard" : "DIN", + "referencedStandardID" : "9073", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -150696,28 +149874,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -150732,7 +149910,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-063455783697007035630988", + "value" : "NO-834387545083124280128719", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -150743,7 +149921,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -150755,10 +149933,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", + "assetId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -150767,17 +149945,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4d1e3bf-9c07-47b3-9393-544c11c653df", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:70ea1a7b-1fce-4191-9137-4f667bbe3539", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -150790,24 +149968,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -151033,7 +150193,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-063455783697007035630988", + "batteryIDDMCCode" : "NO-834387545083124280128719", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -151052,31 +150212,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f33059fa-7d4d-4e30-99be-fad88269928c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:938c252c-a08a-4175-a9ff-c8df922bf87c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -151091,11 +150267,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-05-14", + "currentStateOfHealthTimestamp" : "2017-05-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-06", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -151105,35 +150281,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "530781", + "orderNumber" : "557534", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2939", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "4208", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -151144,8 +150320,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -151155,17 +150331,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -151180,7 +150356,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-359826011078845138239347", + "value" : "NO-948855500012008612886590", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -151191,7 +150367,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -151206,7 +150382,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", + "assetId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -151215,17 +150391,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:831f684d-6617-4538-b73a-1db77bc3c92e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:840ac1e5-450e-462f-8076-4acbdda56162", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -151238,24 +150414,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -151481,7 +150639,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-359826011078845138239347", + "batteryIDDMCCode" : "NO-948855500012008612886590", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -151500,31 +150658,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f7a1bb80-2e2f-4e2c-9aa9-b0ce666d0619", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:267fbdda-e0a6-45b1-a9ed-9d0bf85d66dc", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -151539,11 +150713,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-07", + "currentStateOfHealthTimestamp" : "2014-06-08", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-07", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -151553,35 +150727,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "761973", + "orderNumber" : "905034", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "7989", + "referencedStandard" : "JASO", + "referencedStandardID" : "1667", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -151592,7 +150766,7 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { @@ -151603,11 +150777,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -151628,7 +150802,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-242290872237139567707577", + "value" : "NO-457871180464872997622197", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -151639,7 +150813,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -151651,10 +150825,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", + "assetId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -151663,17 +150837,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:eaedbf9a-fed7-4a2f-bd24-d4dd0d5641a5", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:8baf5cbd-f718-4f55-bdc1-37e7dc562189", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -151686,24 +150860,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -151929,7 +151085,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-242290872237139567707577", + "batteryIDDMCCode" : "NO-457871180464872997622197", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -151948,28 +151104,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:75076b13-330b-4178-a1a3-d04317cbb1dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7930c980-8b42-463f-a349-ee8fbfed920d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b2376252-9c11-4892-a52e-5ea49d8750ef", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bb922ead-731f-4df6-b604-8aeb1a8e8e2d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 6, + "recycledContent" : 57, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -151979,7 +151151,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 59, + "recycledContent" : 69, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -151989,7 +151161,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 61, + "recycledContent" : 62, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -152000,112 +151172,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -152113,35 +151285,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "926754", + "orderNumber" : "91574", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "1822", + "referencedStandard" : "ASME", + "referencedStandardID" : "1821", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -152150,14 +151322,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -152167,13 +151339,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -152188,7 +151360,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-961586982769257604561524", + "value" : "NO-261702803650729736821892", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -152199,7 +151371,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -152211,10 +151383,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", + "assetId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -152223,17 +151395,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:674b71f2-c1e4-40dc-8e8f-24a851e456fd", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:682b0748-d7e8-4503-adc5-4d6ad49a63b4", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152242,17 +151414,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4728cc86-deb0-4f50-aab8-a28b7dbd87e2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:feaf404b-8167-4222-b46c-b9498462662c", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "childassetId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152261,17 +151433,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:6960ba04-3f36-46dc-9692-9f2735d14536", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2655f293-12fd-4212-b36b-07f44c98c4ec", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "childassetId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152280,17 +151452,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:18778815-6f53-4901-ae8b-058b3814701e", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:637aa87b-36fd-48c0-b800-0d301cfe0b78", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "childassetId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152299,17 +151471,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:48a99965-934b-4b52-a8a3-56880b18a006", + "ownerItemId" : "urn:uuid:6c534a20-72fd-4e51-bbab-f9b03024f425", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "childassetId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152318,17 +151490,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:83f815b7-a78b-40c8-adcc-c3ff6f2341e2", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:fc52416e-ad06-4337-a6fa-b36acee8f051", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "childassetId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152337,17 +151509,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:64aa51bc-f88b-403a-98a7-1a6a3540d6ec", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:595ad90e-f879-4eb3-baff-eaa91b1f5725", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "childassetId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152356,17 +151528,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2feec351-a5ba-40ce-83fe-ff8fdad9fad1", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3b0fb168-83c4-486e-a94e-be8230fc3dc7", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "childassetId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152375,17 +151547,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5b32e660-90aa-4d32-91de-141c3e532e96", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:7d96f610-8389-4430-92e0-0e564de86c25", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "childassetId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152394,17 +151566,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a71aea01-86f3-4cc3-a269-9d2d66416c7b", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:82fb7bac-0aae-4d9e-8104-8312cdb886ae", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "childassetId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -152413,38 +151585,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:10d2d3d4-fdc4-4b9e-b76a-fd5a13e1ea00", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:c2359693-2ed3-4e4a-a732-5ae3f08d10de", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "childassetId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -152670,7 +151824,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-961586982769257604561524", + "batteryIDDMCCode" : "NO-261702803650729736821892", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -152712,13 +151866,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2021-09-25", - "version" : 2.1, - "status" : "Approved" + "issueDate" : "2023-11-05", + "version" : 2.5, + "status" : "Draft" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6393, + "diameter" : 229.6781, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -152726,22 +151880,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 19 } }, "commercial" : { - "placedOnMarket" : "2020-07-08", + "placedOnMarket" : "2023-07-25", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-961586982769257604561524", + "value" : "NO-261702803650729736821892", "key" : "PartInstanceID" } ], - "gtin" : " 60297435", + "gtin" : " 92503437", "additionalCode" : [ { "name" : "TARIC", - "value" : "383428586" + "value" : "383126300" } ] }, "sources" : { @@ -152763,7 +151917,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Safety", + "category" : "SubstanceOfConcern", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -152792,12 +151946,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-10", + "date" : "2024-01-21", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -152808,9 +151962,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 8.556 ] + "left" : [ 3.4651 ] }, - "id" : "UZ5630" + "id" : "CW2372" } ] }, "additionalData" : [ { @@ -152833,12 +151987,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Manganese" + "name" : "Lithium" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Lithium" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -152848,14 +152002,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 101 + "carbonContentTotal" : 110 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003AYRE", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", + "facilityId" : "BPNL00000003AYRE", "manufacturerId" : "BPNL00000003AYRE" } } @@ -152868,31 +152022,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -152907,11 +152077,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-25", + "currentStateOfHealthTimestamp" : "2021-05-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -152921,35 +152091,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "985570", + "orderNumber" : "751641", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "7618", + "referencedStandard" : "DIN", + "referencedStandardID" : "4474", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -152975,7 +152145,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -152996,7 +152166,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-888312493038162373043992", + "value" : "NO-099203349826075528663112", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -153007,7 +152177,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -153019,10 +152189,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", + "assetId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -153031,17 +152201,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:cbc13776-f61f-4fd1-91bb-1efb638dcdc9", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6deef8a2-51f8-4f1f-8766-837bc1426061", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -153054,24 +152224,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -153297,7 +152449,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-888312493038162373043992", + "batteryIDDMCCode" : "NO-099203349826075528663112", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -153316,31 +152468,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:46dd1075-d1cf-4244-b9cd-60f7f76de22e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:251412a7-e3df-4145-abe1-23289af12c10", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -153355,11 +152523,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-01", + "currentStateOfHealthTimestamp" : "2015-09-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -153369,35 +152537,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "541645", + "orderNumber" : "604953", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "1540", + "referencedStandardID" : "7319", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -153406,30 +152574,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } } } @@ -153444,7 +152612,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-114670847427380311843029", + "value" : "NO-090719935490896015082395", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -153455,7 +152623,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -153467,10 +152635,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", + "assetId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -153479,17 +152647,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ea5c00d9-d225-4ef6-8f04-894dd714f606", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:c7369bd9-f29b-4d42-b709-e325156cd5ad", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -153502,24 +152670,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -153745,7 +152895,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-114670847427380311843029", + "batteryIDDMCCode" : "NO-090719935490896015082395", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -153764,31 +152914,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:4b7bb58d-eb9a-46da-b704-d7ac5baae2cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1a85200-1c03-42de-95dd-fa6f67c03738", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -153803,11 +152969,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-01", + "currentStateOfHealthTimestamp" : "2016-07-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", + "currentStateOfHealthTimestamp" : "2024-03-10", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -153817,35 +152983,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "105441", + "orderNumber" : "555963", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "8071", + "referencedStandard" : "GB", + "referencedStandardID" : "6847", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -153856,18 +153022,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -153877,7 +153043,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -153892,7 +153058,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-042328502545500094738731", + "value" : "NO-188187379165642236616963", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -153903,7 +153069,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -153915,10 +153081,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", + "assetId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -153927,17 +153093,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c75a3e14-3de1-4175-aa60-36ad003ae549", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8f323fcf-4ea2-41da-8f64-101de2790a51", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -153950,24 +153116,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -154193,7 +153341,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-042328502545500094738731", + "batteryIDDMCCode" : "NO-188187379165642236616963", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -154212,31 +153360,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:a6efb3a7-95a5-4b9a-b850-6146e4300130", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:cd7c9923-d8da-4599-9e5e-e0a1c740a142", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -154251,11 +153415,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-19", + "currentStateOfHealthTimestamp" : "2017-07-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-15", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -154265,35 +153429,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "43845", + "orderNumber" : "153677", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1294", + "referencedStandard" : "EN", + "referencedStandardID" : "7150", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -154302,20 +153466,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -154325,7 +153489,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -154340,7 +153504,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-077606097660377021193127", + "value" : "NO-845315176520240409814819", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -154351,7 +153515,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -154366,7 +153530,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", + "assetId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -154375,17 +153539,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:5ae146b2-2596-4f20-b4c4-95179b7fef8c", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:9f798d38-3c71-484c-be4d-6cb0305a65fd", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -154398,24 +153562,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -154641,7 +153787,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-077606097660377021193127", + "batteryIDDMCCode" : "NO-845315176520240409814819", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -154660,31 +153806,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0172dc1c-3d50-4e7c-98f2-924d1d5c8574", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:29270e6d-b49a-42cb-aa2f-96399d344425", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -154699,11 +153861,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-28", + "currentStateOfHealthTimestamp" : "2020-09-17", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-11", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -154713,35 +153875,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "412406", + "orderNumber" : "351193", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "5611", + "referencedStandard" : "AISI", + "referencedStandardID" : "9350", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -154750,30 +153912,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -154788,7 +153950,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-808477872124908084381017", + "value" : "NO-146223815260009523712436", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -154799,7 +153961,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -154811,10 +153973,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", + "assetId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -154823,17 +153985,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b3f85dd0-6289-4a0f-b412-e2df2bb4c1d2", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:b81b50a8-33fa-4eac-babe-03a43fe55a6a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -154846,24 +154008,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -155089,7 +154233,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-808477872124908084381017", + "batteryIDDMCCode" : "NO-146223815260009523712436", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -155108,31 +154252,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:272ee63b-dabf-4338-9dbc-94cdb5593183", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c0c6c675-1630-4642-977d-64537e850d61", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -155147,11 +154307,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-12-17", + "currentStateOfHealthTimestamp" : "2018-03-10", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -155161,35 +154321,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "906104", + "orderNumber" : "417122", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "5705", + "referencedStandard" : "GB", + "referencedStandardID" : "6137", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -155211,7 +154371,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -155221,7 +154381,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -155236,7 +154396,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-656125482639453250677361", + "value" : "NO-833206370828295257523454", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -155247,7 +154407,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -155259,10 +154419,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", + "assetId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -155271,17 +154431,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b7139c96-2bbd-4793-a8ee-968e35ea078f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:2c8a32de-60fe-4eac-aca7-753a8941a9fc", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -155294,24 +154454,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -155537,7 +154679,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-656125482639453250677361", + "batteryIDDMCCode" : "NO-833206370828295257523454", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -155556,31 +154698,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bca8b42d-9613-455b-9a63-458ec92d3fd4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:31c7f98e-7129-44cf-a6fb-8d52f011092b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -155595,11 +154753,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-08-01", + "currentStateOfHealthTimestamp" : "2018-09-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-02", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -155609,35 +154767,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "992623", + "orderNumber" : "306603", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "9700", + "referencedStandardID" : "3024", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -155649,27 +154807,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -155684,7 +154842,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-153177385520734383337939", + "value" : "NO-394260612845106565418776", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -155695,7 +154853,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -155707,10 +154865,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", + "assetId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -155719,17 +154877,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:89592ff2-5288-4106-85bc-eab16481d484", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:3a0fdc55-b6db-4906-8f86-2dfef7db8197", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -155742,24 +154900,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -155985,7 +155125,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-153177385520734383337939", + "batteryIDDMCCode" : "NO-394260612845106565418776", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -156004,31 +155144,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:3baf8b40-c0b7-4cd5-82aa-544d8035feb2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:be634a30-5cfd-4dd4-adbc-54fc48ae0ea0", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -156043,11 +155199,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-11-15", + "currentStateOfHealthTimestamp" : "2023-08-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-08", + "currentStateOfHealthTimestamp" : "2024-03-23", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -156057,35 +155213,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "824750", + "orderNumber" : "621093", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "5909", + "referencedStandard" : "IS", + "referencedStandardID" : "6843", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -156094,30 +155250,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -156132,7 +155288,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-804050053485016238437303", + "value" : "NO-263841937177235283682631", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -156143,7 +155299,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -156155,10 +155311,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", + "assetId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -156167,17 +155323,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:67db5dbe-af19-427e-9147-5b4fab771b17", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9bb56a6c-2659-47fc-86b9-c8217181071b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -156190,24 +155346,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -156433,7 +155571,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-804050053485016238437303", + "batteryIDDMCCode" : "NO-263841937177235283682631", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -156452,31 +155590,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:cf0cc19d-c755-4aee-a907-bde2459959c8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:efc038c6-0a0f-4f55-a5b8-fb171b12413c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -156491,11 +155645,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-01-24", + "currentStateOfHealthTimestamp" : "2014-04-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-26", + "currentStateOfHealthTimestamp" : "2024-03-31", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -156505,35 +155659,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "605859", + "orderNumber" : "171329", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "6122", + "referencedStandard" : "GB", + "referencedStandardID" : "1937", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -156542,14 +155696,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -156559,13 +155713,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -156580,7 +155734,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-960618439422934171911338", + "value" : "NO-153209568741166125868697", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -156591,7 +155745,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -156603,10 +155757,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", + "assetId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -156615,17 +155769,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2da60b18-4bdd-4734-ba77-07ae5ca4c45f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:de35e270-c1ee-4aa4-a167-3f3b8c458753", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -156638,24 +155792,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -156881,7 +156017,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-960618439422934171911338", + "batteryIDDMCCode" : "NO-153209568741166125868697", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -156900,31 +156036,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dc78a5c2-d6ef-40a7-83af-baec02e7f4db", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:dc337b7a-b7bc-4048-9dab-5ffb81dd939c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -156939,11 +156091,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-02", + "currentStateOfHealthTimestamp" : "2018-12-24", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-21", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -156953,35 +156105,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "907412", + "orderNumber" : "734702", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3571", + "referencedStandard" : "JIS", + "referencedStandardID" : "4447", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -156992,28 +156144,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -157028,7 +156180,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-525934761064530276316729", + "value" : "NO-608558517614927714755745", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -157039,7 +156191,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -157051,10 +156203,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", + "assetId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -157063,17 +156215,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7f3e32b8-985b-4e87-97b5-e531485457f4", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:71486117-37cc-4a6f-867d-2b89e4589538", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -157086,24 +156238,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -157329,7 +156463,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-525934761064530276316729", + "batteryIDDMCCode" : "NO-608558517614927714755745", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -157348,28 +156482,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6b4fae95-8f02-490b-92ea-b24309d2694e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:7551c519-a0ce-497d-bcdb-6a678db7dd1e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:db8bf7b8-fbfe-4d6a-8e3a-b30b98f9f33f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d396cd20-06b9-4aab-b54b-2436c22cd5f2", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 33, + "recycledContent" : 34, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -157379,7 +156529,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 34, + "recycledContent" : 63, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -157389,7 +156539,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 62, + "recycledContent" : 43, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -157400,112 +156550,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -157513,25 +156663,25 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "110423", + "orderNumber" : "911453", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -157540,8 +156690,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7708", + "referencedStandard" : "AISI", + "referencedStandardID" : "2363", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -157550,10 +156700,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -157563,11 +156713,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -157588,7 +156738,7 @@ "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-793352892420425441608700", + "value" : "NO-027592507924474738071852", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -157599,7 +156749,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -157611,10 +156761,10 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", + "assetId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -157623,17 +156773,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:914b8c53-dabe-4312-9a36-a07e0581ad2a", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4ec68863-189c-4d97-8b7f-1aadcd101b20", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157642,17 +156792,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:86b55ae5-8561-42bb-8977-6c3a1028901f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f0faac36-06f4-4ab3-ae4e-697d5eeb8af4", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "childassetId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157661,17 +156811,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:458c4d07-09fc-4af7-b6b0-b862bfedb6eb", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:483d5d24-686b-45e2-8ee1-aa3d9cec7bce", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "childassetId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157680,17 +156830,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:55ba3ac6-fde0-439a-be81-0e2cdad631cc", + "ownerItemId" : "urn:uuid:4694e9c7-24a9-4e1a-9e2c-9105d8560d47", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "childassetId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157699,17 +156849,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8e106643-a959-4467-86df-56908888f54d", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:13fd09f5-2e60-4b35-98ed-8e2bc24a3612", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "childassetId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157718,17 +156868,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:8fee7515-113d-49c8-909c-092acb903933", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:c7d2914b-96a4-4b9d-82b8-f060512e0a5c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "childassetId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157737,17 +156887,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a1801c9e-4163-478c-9559-41cfec7061a6", + "ownerItemId" : "urn:uuid:03dbcdcb-1861-497f-b8b3-79e0be3d5e91", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "childassetId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157756,17 +156906,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9250e1a9-3c30-4ee7-916b-0c92bc466de4", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:1a24a5e5-c7bf-4846-adb5-3e9db307b07f", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "childassetId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157775,17 +156925,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9ad8a564-90e4-4f66-b0d7-8bab3c9790ca", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:bdb6431f-12bc-4711-8d14-4573638ab6ec", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "childassetId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157794,17 +156944,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:b4d58852-494e-4011-ab36-be8d1e428636", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:b4dceb62-dea2-409b-90b4-be7870649867", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "childassetId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -157813,38 +156963,20 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7525d075-2592-4446-8f2c-fcd88c4cec10", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:7563b9df-bf27-486f-833d-503509a0b2c7", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "childassetId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -158070,7 +157202,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-793352892420425441608700", + "batteryIDDMCCode" : "NO-027592507924474738071852", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -158112,13 +157244,13 @@ "id" : "BPNL00000003AYRE", "eori" : "DE012345678901" }, - "issueDate" : "2024-02-26", - "version" : 1.5, - "status" : "Invalid" + "issueDate" : "2024-03-22", + "version" : 1.8, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6291, + "diameter" : 229.6746, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -158126,22 +157258,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 16 + "value" : 17 } }, "commercial" : { - "placedOnMarket" : "2024-02-22", + "placedOnMarket" : "2024-01-02", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-793352892420425441608700", + "value" : "NO-027592507924474738071852", "key" : "PartInstanceID" } ], - "gtin" : " 55998351", + "gtin" : " 48954683", "additionalCode" : [ { "name" : "TARIC", - "value" : "186201518" + "value" : "241924595" } ] }, "sources" : { @@ -158163,7 +157295,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "Compliance", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -158192,7 +157324,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-03-11", + "date" : "2024-03-27", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -158208,9 +157340,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 7.4429 ] + "left" : [ 1.0148 ] }, - "id" : "KH1887" + "id" : "DA3539" } ] }, "additionalData" : [ { @@ -158233,12 +157365,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, "name" : "Steel" } ], - "critical" : [ "Nickel" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -158248,14 +157380,14 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 115 + "carbonContentTotal" : 117 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B3NX", + "importer" : "BPNL00000003AXS3", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", + "facilityId" : "BPNL00000003B2OM", "manufacturerId" : "BPNL00000003AYRE" } } @@ -158268,31 +157400,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afe7fddb-46af-4a1c-8215-750dfa85c3d7", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "parentItems" : [ { + "catenaXId" : "urn:uuid:f25c2adc-6ce1-4804-92d7-cc4935eb6309", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -158307,11 +157455,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-30", + "currentStateOfHealthTimestamp" : "2020-08-16", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-10", + "currentStateOfHealthTimestamp" : "2024-03-13", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -158321,35 +157469,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "528527", + "orderNumber" : "876000", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "5292", + "referencedStandard" : "GB", + "referencedStandardID" : "6251", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -158358,30 +157506,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -158396,7 +157544,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-216391419426668087358748", + "value" : "NO-106892024730314547507922", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -158407,7 +157555,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -158419,10 +157567,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", + "assetId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -158431,17 +157579,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:04ef9794-5054-4671-adef-340ce03f7a7d", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a7d6aa55-a590-4ffd-942d-682b14043b0b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -158454,24 +157602,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -158697,7 +157827,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-216391419426668087358748", + "batteryIDDMCCode" : "NO-106892024730314547507922", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -158716,31 +157846,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:114c630f-9bad-4339-8082-a9d831afd951", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:31e43add-1a29-4bc6-b43d-64713adda0a2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -158755,11 +157901,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-11", + "currentStateOfHealthTimestamp" : "2018-08-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-13", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -158769,16 +157915,16 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "533136", + "orderNumber" : "323680", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 @@ -158787,17 +157933,17 @@ "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "DIN", - "referencedStandardID" : "1275", + "referencedStandardID" : "8780", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -158809,11 +157955,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { @@ -158829,7 +157975,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -158844,7 +157990,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-070573056146020140114258", + "value" : "NO-631011693710128610783939", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -158855,7 +158001,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -158867,10 +158013,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", + "assetId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -158879,17 +158025,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a29b9359-bf3f-4ee6-82a9-7fda6c96043f", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:4bdab07b-c3bd-4e7e-8621-e10c1a9b2aa0", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -158902,24 +158048,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -159145,7 +158273,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-070573056146020140114258", + "batteryIDDMCCode" : "NO-631011693710128610783939", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -159164,31 +158292,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e1291029-851e-4859-a1f9-6cdfe6ccdcdb", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5cacab02-85ca-404a-a0de-14a663b2ffe3", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -159203,11 +158347,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-09-25", + "currentStateOfHealthTimestamp" : "2016-04-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-19", + "currentStateOfHealthTimestamp" : "2024-03-09", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -159217,23 +158361,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "480742", + "orderNumber" : "395355", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -159245,7 +158389,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "JIS", - "referencedStandardID" : "4908", + "referencedStandardID" : "3488", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -159257,7 +158401,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -159271,13 +158415,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -159292,7 +158436,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-998470145454027100913530", + "value" : "NO-384564807221739331766071", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -159303,7 +158447,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -159318,7 +158462,7 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", + "assetId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -159327,17 +158471,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:3aa721af-7321-4c44-b9fe-02b29bdaed36", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:a2811870-fb9a-4364-9e1b-beb1785a6f10", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -159350,24 +158494,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -159593,7 +158719,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-998470145454027100913530", + "batteryIDDMCCode" : "NO-384564807221739331766071", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -159612,31 +158738,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e29b7e9d-6c94-4809-887b-2e38e3fe2a66", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:61f0f3cd-327b-4728-acb1-0e2277c6801d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -159651,11 +158793,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-09-05", + "currentStateOfHealthTimestamp" : "2022-05-25", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -159665,35 +158807,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "729044", + "orderNumber" : "642569", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2690", + "referencedStandard" : "JIS", + "referencedStandardID" : "2625", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -159702,14 +158844,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -159719,13 +158861,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -159740,7 +158882,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-553870064722951756380389", + "value" : "NO-021961286068030704179273", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -159751,7 +158893,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -159763,10 +158905,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", + "assetId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -159775,17 +158917,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:276f5550-a09f-41e2-bf05-3c69bc1175be", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6acdbfc6-7882-4168-8297-d1af0a619c09", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -159798,24 +158940,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -160041,7 +159165,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-553870064722951756380389", + "batteryIDDMCCode" : "NO-021961286068030704179273", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -160060,31 +159184,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:5e9dab88-9b30-4a33-80fd-c45d76e9fbad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d8959031-e6ae-49fa-988d-5b9b1c005630", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -160099,11 +159239,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-10-01", + "currentStateOfHealthTimestamp" : "2021-11-06", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -160113,25 +159253,25 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "462035", + "orderNumber" : "681943", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -160141,7 +159281,7 @@ } ], "materialNameStandardized" : { "referencedStandard" : "ASME", - "referencedStandardID" : "8159", + "referencedStandardID" : "9678", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -160152,22 +159292,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -160188,7 +159328,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-770755434441842670470708", + "value" : "NO-189091928059980735726425", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -160199,7 +159339,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -160211,10 +159351,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", + "assetId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -160223,17 +159363,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:32356d8d-4ce9-4b15-af23-c816b7066f76", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:30757d85-b160-429a-b261-f70eec22554f", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -160246,24 +159386,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -160489,7 +159611,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-770755434441842670470708", + "batteryIDDMCCode" : "NO-189091928059980735726425", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -160508,31 +159630,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6d182614-2947-49ba-9d01-6848ef998b4d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9fc02110-1594-4a3e-ad6a-0cac502b6ed2", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -160547,7 +159685,7 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-04-03", + "currentStateOfHealthTimestamp" : "2022-12-05", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { @@ -160561,35 +159699,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "708923", + "orderNumber" : "92569", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "8210", + "referencedStandard" : "EN", + "referencedStandardID" : "9923", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -160600,8 +159738,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -160611,17 +159749,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -160636,7 +159774,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-795780647921641316860975", + "value" : "NO-941343107717238854755561", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -160647,7 +159785,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -160662,7 +159800,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", + "assetId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -160671,17 +159809,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:0267052f-b1a9-4ca4-90d2-40360bf31a49", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:014612b1-cc57-418f-9f75-dc6b68e3b6d1", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -160694,24 +159832,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -160937,7 +160057,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-795780647921641316860975", + "batteryIDDMCCode" : "NO-941343107717238854755561", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -160956,31 +160076,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:97ff0d3a-75d9-4a72-9f9b-cda6cdc699b2", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6df76a8c-acb7-4b33-9b92-04dfc3914bb8", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -160995,11 +160131,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-06-13", + "currentStateOfHealthTimestamp" : "2018-11-20", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-28", + "currentStateOfHealthTimestamp" : "2024-03-05", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -161009,35 +160145,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "706727", + "orderNumber" : "975685", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5671", + "referencedStandard" : "DIN", + "referencedStandardID" : "1399", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -161053,23 +160189,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -161084,7 +160220,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-651190678479839520199228", + "value" : "NO-443753552801791993980233", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -161095,7 +160231,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -161107,10 +160243,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", + "assetId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -161119,17 +160255,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:419941ea-191a-4b77-901e-f438a859ecd6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9ee1616a-4c95-40db-9c0d-3859bbf1c07a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -161142,24 +160278,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -161385,7 +160503,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-651190678479839520199228", + "batteryIDDMCCode" : "NO-443753552801791993980233", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -161404,31 +160522,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:329d1f44-b9ea-4cd1-8a78-d7e816af50e5", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:16c93a0c-997c-44b7-822f-7952e4c73369", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -161443,11 +160577,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-12-27", + "currentStateOfHealthTimestamp" : "2014-04-11", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-14", + "currentStateOfHealthTimestamp" : "2024-03-25", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -161457,35 +160591,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "349925", + "orderNumber" : "173100", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7656", + "referencedStandard" : "EN", + "referencedStandardID" : "2302", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -161494,20 +160628,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -161517,7 +160651,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -161532,7 +160666,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-428045788323091672467060", + "value" : "NO-641688372626415359636594", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -161543,7 +160677,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -161555,10 +160689,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", + "assetId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -161567,17 +160701,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4eff8d49-ad1b-420c-8162-9eb9fc370238", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:49746072-f90a-4a51-aac1-f4fe3934317e", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -161590,24 +160724,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -161833,7 +160949,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-428045788323091672467060", + "batteryIDDMCCode" : "NO-641688372626415359636594", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -161852,31 +160968,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f5ef7d29-65d8-4a26-9d0a-5701e7936051", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8a6d1acc-6144-466e-b7b9-aaa843ea0c3a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -161891,11 +161023,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-14", + "currentStateOfHealthTimestamp" : "2018-12-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-05", + "currentStateOfHealthTimestamp" : "2024-03-27", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -161905,35 +161037,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "47812", + "orderNumber" : "71508", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "7304", + "referencedStandard" : "AS", + "referencedStandardID" : "2298", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -161942,30 +161074,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -161980,7 +161112,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-759557059617093989385682", + "value" : "NO-528976416624234587910741", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -161991,7 +161123,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -162003,10 +161135,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", + "assetId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -162015,17 +161147,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:85ac2def-32fc-4d72-9a32-ca53570392aa", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:695c906a-f7ab-4289-827a-5c4320278f0b", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -162038,24 +161170,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -162281,7 +161395,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-759557059617093989385682", + "batteryIDDMCCode" : "NO-528976416624234587910741", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -162300,31 +161414,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:59eaaf2d-3e6b-45df-bdce-0f9c24320f44", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1afa88d0-886c-43a0-a921-62c5a44a06f6", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -162339,11 +161469,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-09-17", + "currentStateOfHealthTimestamp" : "2018-04-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-11", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -162353,35 +161483,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "396934", + "orderNumber" : "52292", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "IS", - "referencedStandardID" : "1290", + "referencedStandardID" : "8474", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -162392,28 +161522,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -162428,7 +161558,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-066639614700637985131228", + "value" : "NO-600811642696073800844376", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -162439,7 +161569,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -162451,10 +161581,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", + "assetId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -162463,17 +161593,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:676db28d-c7e3-4ad1-8ebb-d94c8fd8b770", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9d4cfdc7-a023-4ade-a638-bb58bbd8f69a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -162486,24 +161616,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -162729,7 +161841,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-066639614700637985131228", + "batteryIDDMCCode" : "NO-600811642696073800844376", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -162748,28 +161860,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70358406-396a-4469-821e-e10eeb303777", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:12698e0c-6901-4a88-91c5-ea1ab7ec88b1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1f0da6dd-1e5b-42f5-a593-1893bfff1515", + "parentItems" : [ { + "catenaXId" : "urn:uuid:6a424c78-ef94-4b33-aec9-e8a3653374df", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Iron", - "recycledContent" : 40, + "recycledContent" : 51, "materialClass" : "1.1", "quantity" : { "unit" : "unit:kilogram", @@ -162779,7 +161907,7 @@ "materialAbbreviation" : "IR334" }, { "materialName" : "Polyethylen", - "recycledContent" : 87, + "recycledContent" : 28, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -162789,7 +161917,7 @@ "materialAbbreviation" : "PE221" }, { "materialName" : "Polyamid6", - "recycledContent" : 32, + "recycledContent" : 58, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -162799,7 +161927,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Aluminium", - "recycledContent" : 62, + "recycledContent" : 23, "materialClass" : "2.1", "quantity" : { "unit" : "unit:kilogram", @@ -162809,7 +161937,7 @@ "materialAbbreviation" : "ALU331" }, { "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent" : 81, + "recycledContent" : 76, "materialClass" : "0.7", "quantity" : { "unit" : "unit:kilogram", @@ -162819,7 +161947,7 @@ "materialAbbreviation" : "W123" }, { "materialName" : "Glue", - "recycledContent" : 10, + "recycledContent" : 66, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -162829,7 +161957,7 @@ "materialAbbreviation" : "GL338" }, { "materialName" : "Carbon Steel", - "recycledContent" : 74, + "recycledContent" : 20, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -162839,7 +161967,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Cooper", - "recycledContent" : 55, + "recycledContent" : 52, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -162849,7 +161977,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Rubber", - "recycledContent" : 79, + "recycledContent" : 52, "materialClass" : "5.3", "quantity" : { "unit" : "unit:kilogram", @@ -162859,7 +161987,7 @@ "materialAbbreviation" : "R22" }, { "materialName" : "Textiles", - "recycledContent" : 42, + "recycledContent" : 38, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:kilogram", @@ -162870,356 +161998,356 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", "childItems" : [ { - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003CSGV", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { - "value" : "GG-88", + "value" : "ZH-30", "key" : "manufacturerPartId" }, { - "value" : "OMAUTSWWLUZIALLQA", + "value" : "OMBWFRKDADFXIKBGU", "key" : "partInstanceId" }, { - "value" : "OMAUTSWWLUZIALLQA", + "value" : "OMBWFRKDADFXIKBGU", "key" : "van" } ], "manufacturingInformation" : { - "date" : "2013-05-30T05:25:44.000Z", + "date" : "2013-08-19T14:56:23.000Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", "partTypeInformation" : { - "manufacturerPartId" : "GG-88", + "manufacturerPartId" : "ZH-30", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -163227,29 +162355,29 @@ } ], "nameAtManufacturer" : "Vehicle Fully Electric" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "03", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { "value" : "", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "" } } ], "urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription" : [ { - "bodyVariant" : "Van", - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", + "bodyVariant" : "Mehrzweckfahrzeug", + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", "engine" : { "size" : 2998, "power" : 143 @@ -163259,49 +162387,49 @@ "vehicleModel" : "Vehicle Fully Electric", "productionDateGMT" : "2010-01-01", "equipmentVariants" : [ { - "code" : "S2AVB", - "description" : "adaptive drive", + "code" : "S378B", + "description" : "integrated child seats", "group" : "special equipment" }, { - "code" : "S218A", - "description" : "sport automatic transmission", + "code" : "S388C", + "description" : "security plus", "group" : "special equipment" }, { - "code" : "S378B", - "description" : "integrated child seats", + "code" : "A248B", + "description" : "steering wheel heating", "group" : "special equipment" }, { - "code" : "B298B", - "description" : "keyless entry", + "code" : "S218A", + "description" : "sport automatic transmission", "group" : "special equipment" } ], "anonymisedIdentifier" : "sOMtThyhVNDWUZNRcBaQXXI", "mileage" : [ { "mileagePhase" : "as maintained by workshop", - "mileageTimestamp" : "2014-03-24", + "mileageTimestamp" : "2017-07-27", "mileageDistance" : 120000 } ] } ] }, { - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "142050", + "orderNumber" : "488701", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -163310,8 +162438,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7983", + "referencedStandard" : "JASO", + "referencedStandardID" : "7736", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -163327,23 +162455,23 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } @@ -163352,13 +162480,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "73849201-61", "key" : "manufacturerPartId" }, { - "value" : "NO-897103492718576075219698", + "value" : "NO-948964819995699405884009", "key" : "partInstanceId" }, { "value" : "Company 10", @@ -163375,7 +162503,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", "partTypeInformation" : { "manufacturerPartId" : "73849201-61", "customerPartId" : "73849201-61", @@ -163387,56 +162515,54 @@ "nameAtManufacturer" : "Catalysator", "nameAtCustomer" : "Catalysator" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", "partTypeInformation" : { "ownerPartId" : "73849201-61", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Catalysator", "partClassification" : [ { "value" : "Catalysator", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Catalysator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:1700529b-f39b-4b13-b7a9-e808a9dbbaad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c1007188-10cf-4de2-b8a3-a32ddabec1e4", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "childItems" : [ { - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -163444,35 +162570,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "335362", + "orderNumber" : "228195", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2823", + "referencedStandard" : "EN", + "referencedStandardID" : "8356", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -163484,7 +162610,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -163504,7 +162630,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -163519,7 +162645,7 @@ "value" : "22782277-50", "key" : "manufacturerPartId" }, { - "value" : "NO-211534666015366566012745", + "value" : "NO-230982514205879884205703", "key" : "partInstanceId" }, { "value" : "Company 3", @@ -163536,7 +162662,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "partTypeInformation" : { "manufacturerPartId" : "22782277-50", "customerPartId" : "22782277-50", @@ -163551,7 +162677,7 @@ "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "assetId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -163560,26 +162686,26 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:26e85232-2b60-47b6-985e-d83772378e0b", + "ownerItemId" : "urn:uuid:651b1d41-9105-4063-b355-2c506643699b", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "childassetId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", "partTypeInformation" : { "ownerPartId" : "22782277-50", "partVersion" : "03", @@ -163592,27 +162718,25 @@ "nameAtOwner" : "Door front-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "14388717EVX", + "value" : "52981143ZUY", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -163623,7 +162747,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -163636,35 +162760,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "522039", + "orderNumber" : "991145", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8589", + "referencedStandard" : "JASO", + "referencedStandardID" : "6935", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -163673,30 +162797,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -163711,7 +162835,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-810295075415539190881160", + "value" : "NO-130266291136593933660106", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -163722,7 +162846,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -163737,16 +162861,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "assetId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", "partTypeInformation" : { "ownerPartId" : "95657762-59", "partVersion" : "05", @@ -163759,31 +162883,29 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c6ae9d8b-8b89-45d6-bd7d-dafbe9600b09", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:0c55fcdc-074d-4f0e-8f86-c3f9cfab1a5a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7afe9d00-2bb2-47fd-a5c5-ac582404da38", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:50b3f9d3-9ac9-4907-a7fd-d0c429816812", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "childItems" : [ { - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000000BJTL", @@ -163791,35 +162913,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "bpnl" : "BPNL00000003CSGV", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "252563", + "orderNumber" : "638646", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "8858", + "referencedStandard" : "AISI", + "referencedStandardID" : "3163", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -163830,28 +162952,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -163866,7 +162988,7 @@ "value" : "95657362-64", "key" : "manufacturerPartId" }, { - "value" : "NO-522606169119282135007012", + "value" : "NO-556147563281042718061689", "key" : "partInstanceId" }, { "value" : "Company 4", @@ -163883,7 +163005,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "partTypeInformation" : { "manufacturerPartId" : "33740332-54", "customerPartId" : "33740332-54", @@ -163895,10 +163017,10 @@ "nameAtManufacturer" : "Door f-r", "nameAtCustomer" : "Door front-right" }, - "itemVersion" : "02" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "assetId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "manufacturerId" : "BPNL00000003CSGV", "childItems" : [ { "item" : [ { @@ -163907,29 +163029,29 @@ "key" : "BPNL00000003CSGV:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c8bb38b4-1ad6-4176-9766-24222d715c9f", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:f0c5af3b-ce47-43f0-81d4-4b5e65b6f57d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "childassetId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", "partTypeInformation" : { "ownerPartId" : "33740332-54", - "partVersion" : "02", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Door front-right", "partClassification" : [ { @@ -163939,27 +163061,25 @@ "nameAtOwner" : "Door front-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003CSGV", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003CSGV" ] } ] }, { "urn:samm:io.catenax.just_in_sequence_part:3.0.0#JustInSequencePart" : [ { "localIdentifiers" : [ { - "value" : "73869864QSZ", + "value" : "70354065RFW", "key" : "jisNumber" } ], "manufacturingInformation" : { @@ -163970,7 +163090,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "partTypeInformation" : { "manufacturerPartId" : "123-0.740-3434-A", "customerPartId" : "PRT-12345", @@ -163983,35 +163103,35 @@ "nameAtCustomer" : "side element A" } } ], - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "bpnl" : "BPNL00000000BJTL", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "929989", + "orderNumber" : "622974", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 8 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "2393", + "referencedStandard" : "AS", + "referencedStandardID" : "1475", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164023,7 +163143,7 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -164033,11 +163153,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -164058,7 +163178,7 @@ "value" : "95657762-59", "key" : "manufacturerPartId" }, { - "value" : "NO-526060008250250591571360", + "value" : "NO-528220564559373883742673", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164069,7 +163189,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "partTypeInformation" : { "manufacturerPartId" : "95657762-59", "customerPartId" : "95657762-59", @@ -164081,22 +163201,22 @@ "nameAtManufacturer" : "Door Key", "nameAtCustomer" : "Door Key" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "assetId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "manufacturerId" : "BPNL00000000BJTL", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", "partTypeInformation" : { "ownerPartId" : "95657762-59", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Door Key", "partClassification" : [ { @@ -164106,43 +163226,41 @@ "nameAtOwner" : "Door Key" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d1e9d9b9-13fe-4f46-8924-4aaa8dc84a99", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:338dfbf4-ab88-4dab-a544-f6ce6bbafb4d", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d7e8200a-81e9-4715-bfdf-715151ab986d", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000000BJTL", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d42b4b49-0226-49fb-ab99-bc7d7437b4d1", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000000BJTL" ] } ] }, { - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "169179", + "orderNumber" : "326470", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -164151,8 +163269,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "1040", + "referencedStandard" : "ISO", + "referencedStandardID" : "7012", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164161,30 +163279,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -164193,13 +163311,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "15635759-16", "key" : "manufacturerPartId" }, { - "value" : "NO-112437134579525713767718", + "value" : "NO-084097115656130448089157", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164210,7 +163328,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", "partTypeInformation" : { "manufacturerPartId" : "15635759-16", "customerPartId" : "15635759-16", @@ -164222,53 +163340,51 @@ "nameAtManufacturer" : "Door r-l", "nameAtCustomer" : "Door rear-left" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", "partTypeInformation" : { "ownerPartId" : "15635759-16", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Door rear-left", "partClassification" : [ { "value" : "Door rear-left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Door rear-left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fdcc8494-a863-45df-9cf3-6c68c1484555", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ff496cea-68fe-4706-80e7-15b9a2910e5c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "158072", + "orderNumber" : "923806", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -164277,13 +163393,13 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -164292,8 +163408,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6647", + "referencedStandard" : "JIS", + "referencedStandardID" : "1506", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164309,17 +163425,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -164334,13 +163450,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "28673126-98", "key" : "manufacturerPartId" }, { - "value" : "NO-353669866416007480479809", + "value" : "NO-969324281837325916922383", "key" : "partInstanceId" }, { "value" : "Company 5", @@ -164357,7 +163473,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", "partTypeInformation" : { "manufacturerPartId" : "28673126-98", "customerPartId" : "28673126-98", @@ -164369,78 +163485,76 @@ "nameAtManufacturer" : "Door r-r", "nameAtCustomer" : "Door rear-right" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", "partTypeInformation" : { "ownerPartId" : "28673126-98", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Door rear-right", "partClassification" : [ { "value" : "Door rear-right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Door rear-right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9603a05d-d943-482e-aa70-8522094fc470", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f5da3ddd-0fec-4822-81e1-b3e939405032", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "295231", + "orderNumber" : "889129", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "3221", + "referencedStandard" : "ISO", + "referencedStandardID" : "6365", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164449,30 +163563,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -164481,13 +163595,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "94421589-82", "key" : "manufacturerPartId" }, { - "value" : "NO-745506815228397423604793", + "value" : "NO-685009777402686436343960", "key" : "partInstanceId" }, { "value" : "Company 6", @@ -164504,7 +163618,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", "partTypeInformation" : { "manufacturerPartId" : "94421589-82", "customerPartId" : "94421589-82", @@ -164519,16 +163633,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", "partTypeInformation" : { "ownerPartId" : "94421589-82", "partVersion" : "05", @@ -164536,58 +163650,56 @@ "partDescription" : "Engine hood", "partClassification" : [ { "value" : "Engine hood", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Engine hood" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ad00a996-98b4-40d2-a1ba-d5041256f42c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:44b5e201-c901-4ce2-95fb-2b1a39a2eb3e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "780572", + "orderNumber" : "842790", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "4945", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6914", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164599,21 +163711,21 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -164628,13 +163740,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "85023955-75", "key" : "manufacturerPartId" }, { - "value" : "NO-111494423758526603085139", + "value" : "NO-974454300561654889409059", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164645,7 +163757,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", "partTypeInformation" : { "manufacturerPartId" : "85023955-75", "customerPartId" : "85023955-75", @@ -164660,16 +163772,16 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", "partTypeInformation" : { "ownerPartId" : "85023955-75", "partVersion" : "01", @@ -164677,39 +163789,37 @@ "partDescription" : "Tailgate", "partClassification" : [ { "value" : "Tailgate", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Tailgate" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b3a264ae-15ac-4d6b-be7f-94eed6cc07df", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5a814969-9136-4cd7-a88d-9786cf0b6e41", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "283160", + "orderNumber" : "332249", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 14 @@ -164723,12 +163833,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "5283", + "referencedStandard" : "ISO", + "referencedStandardID" : "2149", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164740,7 +163850,7 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -164750,17 +163860,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -164769,13 +163879,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "13769860-47", "key" : "manufacturerPartId" }, { - "value" : "NO-445614779824118555770555", + "value" : "NO-097467415283383577076394", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164786,7 +163896,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", "partTypeInformation" : { "manufacturerPartId" : "13769860-47", "customerPartId" : "13769860-47", @@ -164801,16 +163911,16 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", "partTypeInformation" : { "ownerPartId" : "13769860-47", "partVersion" : "02", @@ -164818,58 +163928,56 @@ "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:522285f6-ee75-4ce2-b6c4-55a0d9c27f0a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4de18b03-065d-43d9-9a04-4828a56288a5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "73515", + "orderNumber" : "872691", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "6978", + "referencedStandard" : "JASO", + "referencedStandardID" : "4318", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -164881,17 +163989,17 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -164901,7 +164009,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -164910,13 +164018,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "36643162-35", "key" : "manufacturerPartId" }, { - "value" : "NO-379402067665339366723185", + "value" : "NO-469042080934096804161465", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -164927,7 +164035,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", "partTypeInformation" : { "manufacturerPartId" : "36643162-35", "customerPartId" : "36643162-35", @@ -164939,78 +164047,76 @@ "nameAtManufacturer" : "Fender right", "nameAtCustomer" : "Fender right" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", "partTypeInformation" : { "ownerPartId" : "36643162-35", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Fender right", "partClassification" : [ { "value" : "Fender right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Fender right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:f787560e-61ad-4033-9211-18fe267f44b6", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9db652bc-00a3-4174-befd-57f16e978136", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "880115", + "orderNumber" : "166846", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "5404", + "referencedStandard" : "DIN", + "referencedStandardID" : "3120", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165019,30 +164125,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -165051,13 +164157,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "54165444-59", "key" : "manufacturerPartId" }, { - "value" : "NO-881090076445243310184722", + "value" : "NO-619204814130822459941944", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165068,7 +164174,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", "partTypeInformation" : { "manufacturerPartId" : "54165444-59", "customerPartId" : "54165444-59", @@ -165080,78 +164186,76 @@ "nameAtManufacturer" : "Bumper front", "nameAtCustomer" : "Bumper front" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", "partTypeInformation" : { "ownerPartId" : "54165444-59", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Bumper front", "partClassification" : [ { "value" : "Bumper front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Bumper front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:508d3291-fe2d-4b8b-be33-3a273e0f8380", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f34c2452-41b8-4772-820a-14c7e239dbd7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "706395", + "orderNumber" : "126324", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "3766", + "referencedStandard" : "JIS", + "referencedStandardID" : "7531", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165173,11 +164277,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -165192,13 +164296,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "22768257-25", "key" : "manufacturerPartId" }, { - "value" : "NO-523618767337566841620574", + "value" : "NO-847829123372928729703626", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165209,7 +164313,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", "partTypeInformation" : { "manufacturerPartId" : "22768257-25", "customerPartId" : "22768257-25", @@ -165221,78 +164325,76 @@ "nameAtManufacturer" : "Bumper rear", "nameAtCustomer" : "Bumper rear" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", "partTypeInformation" : { "ownerPartId" : "22768257-25", - "partVersion" : "01", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Bumper rear", "partClassification" : [ { "value" : "Bumper rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Bumper rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c165cc98-41e0-41fa-8dd1-c452b3e2657c", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:88f8192b-c0ea-4f0f-913a-6647e7724950", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "136173", + "orderNumber" : "149217", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4297", + "referencedStandard" : "EN", + "referencedStandardID" : "3604", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165301,30 +164403,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -165333,13 +164435,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "65529521-37", "key" : "manufacturerPartId" }, { - "value" : "NO-134972035386407420689973", + "value" : "NO-541984649456838493855012", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165350,7 +164452,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", "partTypeInformation" : { "manufacturerPartId" : "65529521-37", "customerPartId" : "65529521-37", @@ -165362,78 +164464,76 @@ "nameAtManufacturer" : "Exterior mirror left", "nameAtCustomer" : "Exterior mirror left" }, - "itemVersion" : "02" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", "partTypeInformation" : { "ownerPartId" : "65529521-37", - "partVersion" : "02", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Exterior mirror left", "partClassification" : [ { "value" : "Exterior mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Exterior mirror left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c26530a1-8be0-412a-8baa-27a2eea51b09", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:ef6bd396-e606-4243-add5-d3be6fc99224", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "964210", + "orderNumber" : "340161", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "4812", + "referencedStandard" : "ASME", + "referencedStandardID" : "7688", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165445,27 +164545,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -165474,13 +164574,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "58471477-24", "key" : "manufacturerPartId" }, { - "value" : "NO-267889602260734086865808", + "value" : "NO-235532144731369285367922", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165491,7 +164591,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", "partTypeInformation" : { "manufacturerPartId" : "58471477-24", "customerPartId" : "58471477-24", @@ -165503,68 +164603,66 @@ "nameAtManufacturer" : "Exterior mirror right", "nameAtCustomer" : "Exterior mirror right" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", "partTypeInformation" : { "ownerPartId" : "58471477-24", - "partVersion" : "03", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Exterior mirror right", "partClassification" : [ { "value" : "Exterior mirror right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Exterior mirror right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:138fb061-fa92-473e-b799-d59967a84ef9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:738a3601-fb66-4423-a8a3-b80bff3934ee", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "326337", + "orderNumber" : "812871", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -165573,8 +164671,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7271", + "referencedStandard" : "DIN", + "referencedStandardID" : "3708", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165586,27 +164684,27 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -165615,13 +164713,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "09002013-68", "key" : "manufacturerPartId" }, { - "value" : "NO-202606871824681721163696", + "value" : "NO-764968564635848033102370", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165632,7 +164730,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", "partTypeInformation" : { "manufacturerPartId" : "09002013-68", "customerPartId" : "09002013-68", @@ -165644,78 +164742,76 @@ "nameAtManufacturer" : "Trailer coupling", "nameAtCustomer" : "Tailer coupling" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", "partTypeInformation" : { "ownerPartId" : "09002013-68", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Tailer coupling", "partClassification" : [ { "value" : "Tailer coupling", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Tailer coupling" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:48e5b3f2-e1f9-498f-9d5d-7016bb0bd5ad", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:47fa74f2-6cb9-4fc6-ba9f-9000ebdce9ca", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "408093", + "orderNumber" : "265008", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AISI", - "referencedStandardID" : "1001", + "referencedStandard" : "IS", + "referencedStandardID" : "1951", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165724,30 +164820,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -165756,13 +164852,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "43501996-98", "key" : "manufacturerPartId" }, { - "value" : "NO-131978078535616439777638", + "value" : "NO-875672695094071829942132", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165773,7 +164869,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", "partTypeInformation" : { "manufacturerPartId" : "43501996-98", "customerPartId" : "43501996-98", @@ -165785,62 +164881,60 @@ "nameAtManufacturer" : "Dashboard", "nameAtCustomer" : "Dashboard" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", "partTypeInformation" : { "ownerPartId" : "43501996-98", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Dashboard", "partClassification" : [ { "value" : "Dashboard", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Dashboard" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ed5eadb7-0ae7-4fcc-9463-b6521be631dc", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b6999c3a-e26c-4513-a689-b9b6890043e1", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "223934", + "orderNumber" : "40817", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -165851,12 +164945,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "1268", + "referencedStandard" : "DIN", + "referencedStandardID" : "4043", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -165867,28 +164961,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -165897,13 +164991,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "77795937-13", "key" : "manufacturerPartId" }, { - "value" : "NO-669032114632615288919023", + "value" : "NO-439378752764749866943526", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -165914,7 +165008,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", "partTypeInformation" : { "manufacturerPartId" : "77795937-13", "customerPartId" : "77795937-13", @@ -165926,78 +165020,76 @@ "nameAtManufacturer" : "Steering wheel", "nameAtCustomer" : "Steering wheel" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", "partTypeInformation" : { "ownerPartId" : "77795937-13", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Steering wheel", "partClassification" : [ { "value" : "Steering wheel", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Steering wheel" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:99f8880e-0925-47a8-abde-75fb2e07337a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f7f5bd0b-093e-48e5-8fff-b63f04ddec1c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "838606", + "orderNumber" : "102099", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "1139", + "referencedStandard" : "ISO", + "referencedStandardID" : "9266", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166006,30 +165098,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -166038,13 +165130,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "20125432-59", "key" : "manufacturerPartId" }, { - "value" : "NO-285471949284935640933709", + "value" : "NO-693787369495971897920451", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166055,7 +165147,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", "partTypeInformation" : { "manufacturerPartId" : "20125432-59", "customerPartId" : "20125432-59", @@ -166067,78 +165159,76 @@ "nameAtManufacturer" : "Indicator left", "nameAtCustomer" : "Indicator left" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", "partTypeInformation" : { "ownerPartId" : "20125432-59", - "partVersion" : "01", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Indicator left", "partClassification" : [ { "value" : "Indicator left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Indicator left" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:84810a02-6478-481d-aebf-647268c2ff0e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:4cc3974d-507a-4f45-9efc-0b9257147843", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "699453", + "orderNumber" : "713629", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4108", + "referencedStandard" : "IS", + "referencedStandardID" : "4553", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166147,10 +165237,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -166164,13 +165254,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -166179,13 +165269,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "19073706-76", "key" : "manufacturerPartId" }, { - "value" : "NO-330957184442058171647578", + "value" : "NO-505208852529131657864901", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166196,7 +165286,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", "partTypeInformation" : { "manufacturerPartId" : "19073706-76", "customerPartId" : "19073706-76", @@ -166208,78 +165298,76 @@ "nameAtManufacturer" : "Indicator right", "nameAtCustomer" : "Indicator right" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", "partTypeInformation" : { "ownerPartId" : "19073706-76", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Indicator right", "partClassification" : [ { "value" : "Indicator right", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Indicator right" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7b132c7a-0766-4875-9aa5-95b36441027b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:409a8a52-f502-4d57-97c7-a0b77b87482b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "236482", + "orderNumber" : "932584", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "5981", + "referencedStandardID" : "7232", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166290,8 +165378,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -166301,17 +165389,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -166320,13 +165408,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "45415162-57", "key" : "manufacturerPartId" }, { - "value" : "NO-822796740548188148943670", + "value" : "NO-966970944530588040466745", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166337,7 +165425,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", "partTypeInformation" : { "manufacturerPartId" : "45415162-57", "customerPartId" : "45415162-57", @@ -166352,16 +165440,16 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", "partTypeInformation" : { "ownerPartId" : "45415162-57", "partVersion" : "05", @@ -166369,46 +165457,44 @@ "partDescription" : "Led headlight", "partClassification" : [ { "value" : "Led headlight", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Led headlight" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:816d3ae0-a616-4754-bbb3-542fc70712f3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e5ec9e2d-a1ed-4aa6-9806-a4f667fefe31", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "131404", + "orderNumber" : "62516", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, @@ -166419,8 +165505,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "3300", + "referencedStandard" : "ASME", + "referencedStandardID" : "5519", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166432,27 +165518,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -166461,13 +165547,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "78141846-87", "key" : "manufacturerPartId" }, { - "value" : "NO-771564318302097683905104", + "value" : "NO-917624356265437189507515", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166478,7 +165564,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", "partTypeInformation" : { "manufacturerPartId" : "78141846-87", "customerPartId" : "78141846-87", @@ -166490,66 +165576,64 @@ "nameAtManufacturer" : "Starter motor", "nameAtCustomer" : "Starter motor" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", "partTypeInformation" : { "ownerPartId" : "78141846-87", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Starter motor", "partClassification" : [ { "value" : "Starter motor", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Starter motor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85f21a6c-5ba2-440d-88d9-f81a319dcafe", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:089c3fea-4505-491b-a121-006d9f8dc090", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "460640", + "orderNumber" : "191193", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, @@ -166560,8 +165644,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "2681", + "referencedStandard" : "GB", + "referencedStandardID" : "6916", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166570,10 +165654,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -166583,7 +165667,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -166602,13 +165686,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "81324139-23", "key" : "manufacturerPartId" }, { - "value" : "NO-239260272543321279088898", + "value" : "NO-493450131978668699100774", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166619,7 +165703,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", "partTypeInformation" : { "manufacturerPartId" : "81324139-23", "customerPartId" : "81324139-23", @@ -166631,57 +165715,55 @@ "nameAtManufacturer" : "Alternator", "nameAtCustomer" : "Alternator" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", "partTypeInformation" : { "ownerPartId" : "81324139-23", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "Alternator", "partClassification" : [ { "value" : "Alternator", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Alternator" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:29b5b716-f29b-4c37-91f9-b0344212122f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b1709e04-f860-41fd-9f29-d5bc29b37116", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "125824", + "orderNumber" : "302026", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { @@ -166690,19 +165772,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2923", + "referencedStandard" : "AISI", + "referencedStandardID" : "6223", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166711,14 +165793,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -166728,13 +165810,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 } } } @@ -166743,13 +165825,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "57929013-09", "key" : "manufacturerPartId" }, { - "value" : "NO-306396512245970743345151", + "value" : "NO-650327009718442560260145", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166760,7 +165842,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", "partTypeInformation" : { "manufacturerPartId" : "57929013-09", "customerPartId" : "57929013-09", @@ -166772,78 +165854,76 @@ "nameAtManufacturer" : "AC compressor", "nameAtCustomer" : "Air conditioning compressor" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", "partTypeInformation" : { "ownerPartId" : "57929013-09", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Air conditioning compressor", "partClassification" : [ { "value" : "Air conditioning compressor", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Air conditioning compressor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:702862bc-42af-4301-92de-ae7f93f69f1e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:95388da0-cc21-4ef7-aff0-e9f607300f3c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "969328", + "orderNumber" : "687156", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "4926", + "referencedStandard" : "ASME", + "referencedStandardID" : "5009", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166854,22 +165934,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -166884,13 +165964,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "61184040-23", "key" : "manufacturerPartId" }, { - "value" : "NO-895054980590632690004187", + "value" : "NO-481529331847464441223782", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -166901,7 +165981,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", "partTypeInformation" : { "manufacturerPartId" : "61184040-23", "customerPartId" : "61184040-23", @@ -166913,53 +165993,51 @@ "nameAtManufacturer" : "Taillight rear", "nameAtCustomer" : "Taillight rear" }, - "itemVersion" : "04" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", "partTypeInformation" : { "ownerPartId" : "61184040-23", - "partVersion" : "04", + "partVersion" : "03", "itemCategory" : "component", "partDescription" : "Taillight rear", "partClassification" : [ { "value" : "Taillight rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Taillight rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:ec941d14-7c9c-4322-a8ff-aa2050b676a0", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5063b3e5-fff6-4b87-bd2c-44e32548948e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "213237", + "orderNumber" : "897161", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -166968,23 +166046,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8871", + "referencedStandard" : "JASO", + "referencedStandardID" : "2821", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -166995,22 +166073,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -167025,13 +166103,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "78744126-74", "key" : "manufacturerPartId" }, { - "value" : "NO-620547476734310789610821", + "value" : "NO-547861897175055713666862", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167042,7 +166120,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", "partTypeInformation" : { "manufacturerPartId" : "78744126-74", "customerPartId" : "78744126-74", @@ -167054,78 +166132,76 @@ "nameAtManufacturer" : "Taillight front", "nameAtCustomer" : "Taillight front" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", "partTypeInformation" : { "ownerPartId" : "78744126-74", - "partVersion" : "01", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Taillight front", "partClassification" : [ { "value" : "Taillight front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Taillight front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8ccb9f63-0b18-4b8a-8dd1-ba284fac9078", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:1370f8b7-cd45-4748-b422-a811f29c7348", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "348657", + "orderNumber" : "673599", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7617", + "referencedStandard" : "EN", + "referencedStandardID" : "3217", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167136,12 +166212,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -167157,7 +166233,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } @@ -167166,13 +166242,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "12093297-03", "key" : "manufacturerPartId" }, { - "value" : "NO-600852313453046969357341", + "value" : "NO-534631261225749200522502", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167183,7 +166259,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", "partTypeInformation" : { "manufacturerPartId" : "12093297-03", "customerPartId" : "12093297-03", @@ -167195,78 +166271,76 @@ "nameAtManufacturer" : "Axle part front", "nameAtCustomer" : "Axle part front" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", "partTypeInformation" : { "ownerPartId" : "12093297-03", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Axle part front", "partClassification" : [ { "value" : "Axle part front", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Axle part front" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b4075225-1f8e-48df-a702-11a4886fab9e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:87e8c28e-872c-4110-ade8-7d0439e26f1f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "584409", + "orderNumber" : "446923", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "3210", + "referencedStandard" : "AS", + "referencedStandardID" : "8017", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167277,28 +166351,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -167307,13 +166381,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "88111709-49", "key" : "manufacturerPartId" }, { - "value" : "NO-552693740323920547409688", + "value" : "NO-815263249267167046145620", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167324,7 +166398,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", "partTypeInformation" : { "manufacturerPartId" : "88111709-49", "customerPartId" : "88111709-49", @@ -167336,68 +166410,66 @@ "nameAtManufacturer" : "Axle part rear", "nameAtCustomer" : "Axle part rear" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", "partTypeInformation" : { "ownerPartId" : "88111709-49", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Axle part rear", "partClassification" : [ { "value" : "Axle part rear", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Axle part rear" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:23ae9d62-5777-4158-b23b-d614486cb24a", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:24753c7a-bac9-4c3a-8677-98f04d375619", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "676051", + "orderNumber" : "364598", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 22 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -167406,8 +166478,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "5707", + "referencedStandard" : "JASO", + "referencedStandardID" : "3882", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167423,17 +166495,17 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { @@ -167448,13 +166520,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "00871379-44", "key" : "manufacturerPartId" }, { - "value" : "NO-647814508944148501691202", + "value" : "NO-004045696137237928488860", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167465,7 +166537,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", "partTypeInformation" : { "manufacturerPartId" : "00871379-44", "customerPartId" : "00871379-44", @@ -167477,78 +166549,76 @@ "nameAtManufacturer" : "Chassis", "nameAtCustomer" : "Chassis" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", "partTypeInformation" : { "ownerPartId" : "00871379-44", - "partVersion" : "04", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Chassis", "partClassification" : [ { "value" : "Chassis", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Chassis" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:dd235927-b616-46d6-8576-b201022e40c9", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:9ddb6702-48e7-4835-bf5e-b388a445465b", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "26618", + "orderNumber" : "394101", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "8901", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7485", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167557,30 +166627,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } @@ -167589,13 +166659,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "08901347-87", "key" : "manufacturerPartId" }, { - "value" : "NO-248823758665297496645777", + "value" : "NO-372967020898472388852086", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167606,7 +166676,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", "partTypeInformation" : { "manufacturerPartId" : "08901347-87", "customerPartId" : "08901347-87", @@ -167618,78 +166688,76 @@ "nameAtManufacturer" : "Rims", "nameAtCustomer" : "Rims" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", "partTypeInformation" : { "ownerPartId" : "08901347-87", - "partVersion" : "05", + "partVersion" : "04", "itemCategory" : "component", "partDescription" : "Rims", "partClassification" : [ { "value" : "Rims", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Rims" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fa304506-6c78-4e33-9dec-35063ea62b56", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:912d62e1-006f-4818-b271-78805088bc54", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "911188", + "orderNumber" : "635682", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "3536", + "referencedStandard" : "ASME", + "referencedStandardID" : "1969", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167698,20 +166766,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -167721,7 +166789,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } } } @@ -167730,13 +166798,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "45863316-60", "key" : "manufacturerPartId" }, { - "value" : "NO-648856597195950857904627", + "value" : "NO-104341205718762138329374", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -167747,7 +166815,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", "partTypeInformation" : { "manufacturerPartId" : "45863316-60", "customerPartId" : "45863316-60", @@ -167759,53 +166827,51 @@ "nameAtManufacturer" : "Tires", "nameAtCustomer" : "Tires" }, - "itemVersion" : "05" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", "partTypeInformation" : { "ownerPartId" : "45863316-60", - "partVersion" : "05", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Tires", "partClassification" : [ { "value" : "Tires", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "nameAtOwner" : "Tires" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9687cdab-5f35-4afe-8828-d41ab0cfa6e1", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:6cd6caca-2015-46bf-85ac-abf09e67df94", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Carbon Steel", - "recycledContent" : 57, + "recycledContent" : 73, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -167815,7 +166881,7 @@ "materialAbbreviation" : "CS2" }, { "materialName" : "Oil", - "recycledContent" : 1, + "recycledContent" : 31, "materialClass" : "9.2", "quantity" : { "unit" : "unit:kilogram", @@ -167825,7 +166891,7 @@ "materialAbbreviation" : "SAE40" }, { "materialName" : "Copper", - "recycledContent" : 43, + "recycledContent" : 39, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -167836,32 +166902,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "childItems" : [ { - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "quantity" : { - "quantityNumber" : 0.2014, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2014 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "quantity" : { - "quantityNumber" : 0.2341, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2341 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AZQP", @@ -167869,35 +166935,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "bpnl" : "BPNL00000003B2OM", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "836732", + "orderNumber" : "424822", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "8877", + "referencedStandard" : "EN", + "referencedStandardID" : "7403", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -167906,10 +166972,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -167919,17 +166985,17 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } } } @@ -167944,7 +167010,7 @@ "value" : "42555H1-52", "key" : "manufacturerPartId" }, { - "value" : "NO-969650964344996854382343", + "value" : "NO-651538877044779403448747", "key" : "partInstanceId" }, { "value" : "Company 2", @@ -167961,7 +167027,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "partTypeInformation" : { "manufacturerPartId" : "42555H1-52", "customerPartId" : "42555H1-52", @@ -167973,29 +167039,29 @@ "nameAtManufacturer" : "Transmission", "nameAtCustomer" : "Transmission" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "assetId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "manufacturerId" : "BPNL00000003B2OM", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9b4e5ec3-51bb-4ced-b0ab-b26c13b4bbf2", + "ownerItemId" : "urn:uuid:cd9a0c3c-321a-4bc8-b448-88bbc9c85fe9", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "childassetId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -168004,17 +167070,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:229a00f0-5b01-4e8b-9d7a-95ae3e94aace", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:fd0eb3c9-4ddb-4367-8277-28b5f7c57e5c", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "childassetId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -168023,17 +167089,17 @@ "key" : "BPNL00000003B2OM:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a9148af8-298a-40cf-8fb9-72e7f9d88edd", + "ownerItemId" : "urn:uuid:cb3e7130-4ddb-431e-8b1b-adfea1bf2226", "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "childassetId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -168046,24 +167112,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "partTypeInformation" : { - "ownerPartId" : "42555H1-52", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "Transmission", - "partClassification" : [ { - "value" : "Transmission", - "key" : "BPNL00000003B2OM:PartFamily" - } ], - "nameAtOwner" : "Transmission" - } - } ], "urn:samm:io.catenax.transmission_pass:1.0.0#TransmissionPass" : [ { "productSpecificParameters" : { "torqueConverter" : [ "RYtGKbgicZaHCBRQDSx" ], @@ -168105,10 +167153,10 @@ "documentTitle" : "Title A" } ] }, - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", "identification" : { "localIdentifiers" : [ { - "value" : "NO-969650964344996854382343", + "value" : "NO-651538877044779403448747", "key" : "PartInstanceID" } ], "dataMatrixCode" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", @@ -168174,22 +167222,38 @@ "criticalRawMaterials" : [ "eOMtThyhVNLWUZNRcBaQKxI" ] } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "customers" : [ { - "businessPartner" : "BPNL00000003B2OM", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "partTypeInformation" : { + "ownerPartId" : "42555H1-52", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "Transmission", + "partClassification" : [ { + "value" : "Transmission", + "key" : "BPNL00000003B2OM:PartFamily" } ], + "nameAtOwner" : "Transmission" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003B2OM", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B2OM" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -168197,7 +167261,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 61, + "recycledContent" : 47, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -168207,7 +167271,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 69, + "recycledContent" : 13, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -168217,35 +167281,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "417316", + "orderNumber" : "182662", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "7728", + "referencedStandard" : "DIN", + "referencedStandardID" : "1115", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168254,30 +167318,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -168285,7 +167349,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "assetId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -168302,24 +167366,24 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "partTypeInformation" : { - "manufacturerPartId" : "NY-00", + "manufacturerPartId" : "LK-67", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, "itemVersion" : "04" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "04", @@ -168332,31 +167396,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:77270139-0c55-454e-9e22-3e117e2a2a5b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:399e7182-0e5d-40cf-8082-567f2b912483", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "childItems" : [ { - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -168364,35 +167426,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "918525", + "orderNumber" : "310525", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "4830", + "referencedStandard" : "ISO", + "referencedStandardID" : "6074", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168401,30 +167463,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } } } @@ -168436,10 +167498,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "28560P2-12", + "value" : "73919Q9-93", "key" : "manufacturerPartId" }, { - "value" : "NO-067369307894106711566433", + "value" : "NO-162199902527215720219955", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -168450,10 +167512,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "partTypeInformation" : { - "manufacturerPartId" : "28560P2-12", - "customerPartId" : "28560P2-12", + "manufacturerPartId" : "73919Q9-93", + "customerPartId" : "73919Q9-93", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -168462,10 +167524,10 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "04" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "assetId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { @@ -168474,29 +167536,29 @@ "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f409347a-97a4-41b8-a0c5-e461fce6ab20", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:4a7f3a16-f5ad-481c-84f3-ef1732e00c38", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "childassetId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", "partTypeInformation" : { - "ownerPartId" : "28560P2-12", - "partVersion" : "04", + "ownerPartId" : "73919Q9-93", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -168506,22 +167568,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -168539,7 +167599,7 @@ "materialAbbreviation" : "" }, { "materialName" : "Other", - "recycledContent" : 2, + "recycledContent" : 36, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -168549,25 +167609,25 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "457148", + "orderNumber" : "706510", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -168576,8 +167636,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "2088", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "9428", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168586,30 +167646,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } } } @@ -168617,7 +167677,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "assetId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -168634,9 +167694,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "partTypeInformation" : { - "manufacturerPartId" : "IB-48", + "manufacturerPartId" : "RR-78", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -168644,17 +167704,17 @@ } ], "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "02" + "itemVersion" : "05" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "02", + "partVersion" : "05", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -168664,26 +167724,24 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:9be6c416-f04d-4059-95e7-9f9c9a19c26a", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:89089424-0c64-4133-8433-0cb4018e7d1f", + "parentItems" : [ { + "catenaXId" : "urn:uuid:bce717e6-375f-4815-ae9d-0e4868314862", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:197a5f75-7b59-4b14-85d5-d9639c6ba714", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "childItems" : [ ] } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -168698,25 +167756,25 @@ "materialAbbreviation" : "GL338" } ] } ], - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "179318", + "orderNumber" : "743284", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -168725,8 +167783,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5658", + "referencedStandard" : "AS", + "referencedStandardID" : "9673", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168735,30 +167793,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -168766,7 +167824,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "assetId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -168783,9 +167841,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "partTypeInformation" : { - "manufacturerPartId" : "BJ-61", + "manufacturerPartId" : "CB-81", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -168795,12 +167853,12 @@ }, "itemVersion" : "03" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "03", @@ -168813,28 +167871,26 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:834ea129-008e-4d07-a62c-d9b962e9045b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e97b06d5-eaa4-4397-8890-3ea9db5bf055", + "parentItems" : [ { + "catenaXId" : "urn:uuid:fec10053-0b64-44e9-9f29-c8a2d95f8292", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:d50b5ef1-aaa9-40fc-848e-9547e8cbe5cc", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Glue", - "recycledContent" : 17, + "recycledContent" : 63, "materialClass" : "6.2", "quantity" : { "unit" : "unit:kilogram", @@ -168845,32 +167901,32 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "childItems" : [ { - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "quantity" : { - "quantityNumber" : 0.3301, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.3301 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B3NX", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "quantity" : { - "quantityNumber" : 0.2001, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.2001 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -168878,35 +167934,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "bpnl" : "BPNL00000003B5MJ", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "549588", + "orderNumber" : "608175", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "5925", + "referencedStandard" : "ISO", + "referencedStandardID" : "7398", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -168918,27 +167974,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } } } @@ -168950,10 +168006,10 @@ "value" : "BPNL00000003B5MJ", "key" : "manufacturerId" }, { - "value" : "64019Q7-00", + "value" : "55560M0-59", "key" : "manufacturerPartId" }, { - "value" : "NO-826773693399477683890623", + "value" : "NO-386494791906738152266778", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -168964,10 +168020,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "partTypeInformation" : { - "manufacturerPartId" : "64019Q7-00", - "customerPartId" : "64019Q7-00", + "manufacturerPartId" : "55560M0-59", + "customerPartId" : "55560M0-59", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -168979,7 +168035,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "assetId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "manufacturerId" : "BPNL00000003B5MJ", "childItems" : [ { "item" : [ { @@ -168988,17 +168044,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:be280555-de15-4b87-9b91-94684e83e0c9", + "ownerItemId" : "urn:uuid:aa5e418a-5e94-406d-82fd-f1be88dd54a9", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "childassetId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -169007,17 +168063,17 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:f78b0e12-91d7-43c1-ac31-fc5fa8057e24", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:1b82df2c-b6a0-446a-8b62-7cff0bad2c80", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "childassetId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { @@ -169026,28 +168082,28 @@ "key" : "BPNL00000003B5MJ:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:99552ffe-2354-4627-9275-fab0debcd9da", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:73ececc9-9d18-468e-b77b-784ac5cd3cce", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "childassetId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", "partTypeInformation" : { - "ownerPartId" : "64019Q7-00", + "ownerPartId" : "55560M0-59", "partVersion" : "01", "itemCategory" : "component", "partDescription" : "ECU", @@ -169058,22 +168114,20 @@ "nameAtOwner" : "ECU" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B5MJ", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B5MJ" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -169081,7 +168135,7 @@ "materialClass" : "5.5", "component" : [ { "materialName" : "Aluminium oxide", - "recycledContent" : 66, + "recycledContent" : 7, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:percent", @@ -169091,7 +168145,7 @@ "materialAbbreviation" : "AL7" }, { "materialName" : "Other", - "recycledContent" : 77, + "recycledContent" : 41, "materialClass" : "5.5.2", "quantity" : { "unit" : "unit:percent", @@ -169101,10 +168155,10 @@ "materialAbbreviation" : "" } ] } ], - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "bpnl" : "BPNL00000003AXS3", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "798954", + "orderNumber" : "141037", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -169113,23 +168167,23 @@ "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "9906", + "referencedStandard" : "EN", + "referencedStandardID" : "9757", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -169140,22 +168194,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -169169,7 +168223,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "assetId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "manufacturerId" : "BPNL00000003AXS3", "childItems" : [ ] } ], @@ -169186,9 +168240,9 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "partTypeInformation" : { - "manufacturerPartId" : "TQ-65", + "manufacturerPartId" : "DB-66", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -169198,12 +168252,12 @@ }, "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", "partTypeInformation" : { "ownerPartId" : "", "partVersion" : "01", @@ -169216,31 +168270,29 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:777acf38-36c7-4d7d-8a4b-48ed56263075", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:07c3f993-dae8-44b6-92a0-b517c68d0187", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003AXS3", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AXS3" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "childItems" : [ { - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "quantity" : { - "quantityNumber" : 0.1908, - "measurementUnit" : "unit:kilogram" + "unit" : "unit:kilogram", + "value" : 0.1908 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -169248,14 +168300,14 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "bpnl" : "BPNL00000003B3NX", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "324779", + "orderNumber" : "688959", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { @@ -169264,19 +168316,19 @@ } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "EN", - "referencedStandardID" : "8959", + "referencedStandard" : "JASO", + "referencedStandardID" : "2445", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -169285,7 +168337,7 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 @@ -169298,11 +168350,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -169320,10 +168372,10 @@ "value" : "BPNL00000003B3NX", "key" : "manufacturerId" }, { - "value" : "81438W4-69", + "value" : "98235W7-28", "key" : "manufacturerPartId" }, { - "value" : "NO-995949081304639517654037", + "value" : "NO-338203554649163708001668", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -169334,10 +168386,10 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "partTypeInformation" : { - "manufacturerPartId" : "81438W4-69", - "customerPartId" : "81438W4-69", + "manufacturerPartId" : "98235W7-28", + "customerPartId" : "98235W7-28", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -169346,41 +168398,41 @@ "nameAtManufacturer" : "Sensor", "nameAtCustomer" : "Sensor" }, - "itemVersion" : "01" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "assetId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "manufacturerId" : "BPNL00000003B3NX", "childItems" : [ { "item" : [ { "itemClassification" : [ { - "value" : "Engineering Plastics", + "value" : "Mirror left", "key" : "BPNL00000003B3NX:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fe8e1f2b-6448-41ac-9ade-d6586fc28853", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:444ab474-8063-4663-bc62-45bdaaa296d5", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "childassetId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", "partTypeInformation" : { - "ownerPartId" : "81438W4-69", - "partVersion" : "01", + "ownerPartId" : "98235W7-28", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Sensor", "partClassification" : [ { @@ -169390,22 +168442,20 @@ "nameAtOwner" : "Sensor" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B3NX", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B3NX" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -169413,7 +168463,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 31, + "recycledContent" : 87, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -169423,7 +168473,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 35, + "recycledContent" : 1, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -169433,25 +168483,25 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "368264", + "orderNumber" : "723977", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -169460,8 +168510,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "3966", + "referencedStandard" : "EN", + "referencedStandardID" : "1228", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -169470,24 +168520,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { @@ -169501,7 +168551,7 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "assetId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], @@ -169518,27 +168568,27 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "partTypeInformation" : { - "manufacturerPartId" : "CW-13", + "manufacturerPartId" : "ZV-90", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", "classificationID" : "61360- 2:2012 " } ], - "nameAtManufacturer" : "Engineering Plastics" + "nameAtManufacturer" : "Mirror left" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", "partTypeInformation" : { "ownerPartId" : "", - "partVersion" : "05", + "partVersion" : "01", "itemCategory" : "component", "partDescription" : "", "partClassification" : [ { @@ -169548,22 +168598,20 @@ "nameAtOwner" : "" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:44edb71f-e32a-40fe-b19c-57e4f2594a3b", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:12b614dc-95b9-4976-bd50-e2fe676e6319", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e6354f13-0d62-4c12-b170-635373dd2d3c", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:85e2cfde-1f43-460e-a8e0-765c86792ad2", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { @@ -169571,7 +168619,7 @@ "materialClass" : "5.1", "component" : [ { "materialName" : "PA66", - "recycledContent" : 4, + "recycledContent" : 71, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -169581,7 +168629,7 @@ "materialAbbreviation" : "PA66" }, { "materialName" : "GF-Faser", - "recycledContent" : 53, + "recycledContent" : 7, "materialClass" : "5.1", "quantity" : { "unit" : "unit:percent", @@ -169591,35 +168639,35 @@ "materialAbbreviation" : "GF30" } ] } ], - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "bpnl" : "BPNL00000003B0Q0", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "627552", + "orderNumber" : "417397", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "2856", + "referencedStandard" : "ASME", + "referencedStandardID" : "8342", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -169630,12 +168678,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -169645,13 +168693,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } @@ -169663,24 +168711,24 @@ "value" : "BPNL00000003B0Q0", "key" : "manufacturerId" }, { - "value" : "46106B9-16", + "value" : "36528D0-10", "key" : "manufacturerPartId" }, { - "value" : "NO-016852990645172955032259", + "value" : "NO-918636087890488440941983", "key" : "partInstanceId" } ], "manufacturingInformation" : { "date" : "2022-02-04T14:48:54", "country" : "DEU", "sites" : [ { - "catenaXsiteId" : "BPNS00000003B0Q0", + "catenaXsiteId" : "BPNS00000003B5MJ", "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "partTypeInformation" : { - "manufacturerPartId" : "46106B9-16", - "customerPartId" : "46106B9-16", + "manufacturerPartId" : "36528D0-10", + "customerPartId" : "36528D0-10", "partClassification" : [ { "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", "classificationStandard" : "IEC", @@ -169689,22 +168737,22 @@ "nameAtManufacturer" : "Engineering Plastics", "nameAtCustomer" : "Engineering Plastics" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "assetId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "manufacturerId" : "BPNL00000003B0Q0", "childItems" : [ ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { "validityPeriod" : { "validFrom" : "2023-02-10T07:17:52.396Z", "validTo" : "2023-02-10T07:17:52.396Z" }, - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", "partTypeInformation" : { - "ownerPartId" : "46106B9-16", - "partVersion" : "03", + "ownerPartId" : "36528D0-10", + "partVersion" : "02", "itemCategory" : "component", "partDescription" : "Engineering Plastics", "partClassification" : [ { @@ -169714,35 +168762,97 @@ "nameAtOwner" : "Engineering Plastics" } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0654aedc-2549-4a3b-8c19-9b85b88f49f1", - "customers" : [ { + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5aeaca72-5dca-46b9-ac94-3829544e9190", + "parentItems" : [ { + "catenaXId" : "urn:uuid:d530ccd3-ec55-4c41-b222-ba9046cdb7be", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, "businessPartner" : "BPNL00000003B0Q0", - "parentItems" : [ { - "catenaXId" : "urn:uuid:afa9f3c4-ca4f-4fb6-9a60-e1f5fb4ffc48", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003B0Q0" ] } ] }, { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "childItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:ad638047-9990-4896-af60-3bf56e077a3b", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:64263db8-79d7-4da9-9a8b-bcc9851d7b7d", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:196e239a-7253-4289-bef6-5797c884b11c", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "catenaXId" : "urn:uuid:07342db1-b838-4aed-9ceb-b46191230347", + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "hasAlternatives" : false, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "38049661-08", "key" : "manufacturerPartId" }, { - "value" : "NO-191917430528725375106893", + "value" : "NO-863627330185303438099030", "key" : "partInstanceId" }, { "value" : "Company 1", @@ -169759,7 +168869,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", "partTypeInformation" : { "manufacturerPartId" : "38049661-08", "customerPartId" : "38049661-08", @@ -169771,7 +168881,7 @@ "nameAtManufacturer" : "Battery", "nameAtCustomer" : "Battery" }, - "itemVersion" : "05" + "itemVersion" : "04" } ], "urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer" : [ { "incoterms" : "DAP (Delivered at Place)", @@ -169810,7 +168920,7 @@ "key" : "JxkyvRnL" } ], "productLink" : "https://123", - "oeNumber" : "NO-191917430528725375106893", + "oeNumber" : "NO-863627330185303438099030", "category" : { "subCategory" : [ "Battery" ], "mainCategory" : [ "Audio, video, navigation" ] @@ -169823,121 +168933,121 @@ "mileage" : 120000.06 } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a272da79-26d7-4fbc-95d6-d45867b72487", + "ownerItemId" : "urn:uuid:f10ff7b9-baf5-4fe7-9b44-ca4012dc35d5", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "childassetId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2c70eb5d-d1db-46d7-a5a4-968e4632e40c", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:dc4a8dea-2162-4aef-b72c-798595f752ae", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "childassetId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:926f4443-f04a-4ba2-93dd-a5f7db4b9ec1", + "ownerItemId" : "urn:uuid:7359d14e-b43c-4fb3-94c5-6061cfa50e69", "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + "childassetId" : "urn:uuid:ad638047-9990-4896-af60-3bf56e077a3b", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ae74877d-3423-484c-b431-71cc85145850", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:bc35bfc3-5f5f-4701-8750-b893d1d2c487", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d2dbda1c-1a8e-4a44-9cf3-b9ddde82d89e", + "childassetId" : "urn:uuid:64263db8-79d7-4da9-9a8b-bcc9851d7b7d", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c7412f24-fd1f-49d5-8492-376df636a0b3", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:d73e8ee7-a44c-4195-a351-1eba1277b039", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:befab831-7855-4c24-a69d-82db4902c5ac", + "childassetId" : "urn:uuid:196e239a-7253-4289-bef6-5797c884b11c", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:27ca6efa-3f00-41f9-9f47-51c8f244c473", + "ownerItemId" : "urn:uuid:3be8378d-20bd-48ad-b2a9-e9cd1fdc8840", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:cc88364a-4358-4b85-a61d-2b45391348ae", + "childassetId" : "urn:uuid:07342db1-b838-4aed-9ceb-b46191230347", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -169969,20 +169079,20 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-10-09", - "version" : 1.7, + "issueDate" : "2024-03-21", + "version" : 2.8, "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 1086.0725, - "width" : 1086, - "length" : 2005, - "weight" : 661, - "height" : 318 + "diameter" : 1472.0777, + "width" : 1472, + "length" : 2467, + "weight" : 696, + "height" : 346 }, "lifespan" : { "unit" : "unit:year", @@ -169990,18 +169100,18 @@ } }, "commercial" : { - "placedOnMarket" : "2022-12-19", + "placedOnMarket" : "2024-03-20", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-191917430528725375106893", + "value" : "NO-863627330185303438099030", "key" : "PartInstanceID" } ], - "gtin" : " 27217354", + "gtin" : " 43397703", "additionalCode" : [ { "name" : "TARIC", - "value" : "464053879" + "value" : "847841554" } ] }, "sources" : { @@ -170023,7 +169133,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "Safety", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -170052,7 +169162,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-01-13", + "date" : "2024-03-28", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -170068,9 +169178,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 6.3151 ] + "left" : [ 9.591 ] }, - "id" : "YM2584" + "id" : "EB4909" } ] }, "additionalData" : [ { @@ -170093,12 +169203,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : false, + "recycled" : true, "renewable" : false, "percentage" : 5, - "name" : "Aluminium" + "name" : "Graphite" } ], - "critical" : [ "Cobalt" ], + "critical" : [ "Graphite" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -170108,39 +169218,40 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 112 + "carbonContentTotal" : 104 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003B2OM", + "importer" : "BPNL00000003B3NX", "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003AXS3", + "manufacturerId" : "BPNL00000003AVTH" } } } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:a8892eff-3518-4e96-979e-ae9267e30b2f", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "partTypeInformation" : { + "ownerPartId" : "38049661-08", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "Battery", + "partClassification" : [ { + "value" : "Battery", + "key" : "BPNL00000003AVTH:PartFamily" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + "nameAtOwner" : "Battery" + } } ], "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 69, + "recycledContent" : 5, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -170150,7 +169261,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 42, + "recycledContent" : 12, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -170160,7 +169271,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 2, + "recycledContent" : 36, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -170170,97 +169281,33 @@ "materialAbbreviation" : "CS2" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "childItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:d2dbda1c-1a8e-4a44-9cf3-b9ddde82d89e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:befab831-7855-4c24-a69d-82db4902c5ac", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cc88364a-4358-4b85-a61d-2b45391348ae", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "887964", + "orderNumber" : "145901", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "1783", + "referencedStandard" : "EN", + "referencedStandardID" : "5169", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -170269,54 +169316,36 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } } } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "partTypeInformation" : { - "ownerPartId" : "38049661-08", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "Battery", - "partClassification" : [ { - "value" : "Battery", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "Battery" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -170542,7 +169571,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-191917430528725375106893", + "batteryIDDMCCode" : "NO-863627330185303438099030", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -170561,6 +169590,21 @@ } ], "productType" : "pack" } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "parentItems" : [ { + "catenaXId" : "urn:uuid:4884b1b0-8812-4c7b-9d29-23436e7092e5", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AVTH" ] + } ], "urn:samm:io.catenax.return_request:1.0.1#ReturnRequest" : [ { "productConditions" : "at least 1990 model", "desiredPrice" : { @@ -170576,7 +169620,7 @@ "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 77, + "recycledContent" : 84, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -170586,7 +169630,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 89, + "recycledContent" : 21, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -170596,7 +169640,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 22, + "recycledContent" : 7, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -170607,112 +169651,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "catenaXId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -170720,35 +169764,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "298796", + "orderNumber" : "277878", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "5373", + "referencedStandard" : "EN", + "referencedStandardID" : "3886", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -170757,30 +169801,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } @@ -170789,13 +169833,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-225047452744455302636553", + "value" : "NO-115445174246140951066641", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -170806,7 +169850,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -170821,237 +169865,219 @@ "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4abdf863-5c92-4597-acc4-df683a905d42", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:bce737d4-fda3-46ac-867d-cc4f7365b274", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", + "childassetId" : "urn:uuid:8d9ae0bc-0c7b-45c0-8350-0f99780a0669", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:c931e6e6-f903-4bd9-9fb1-198c62b74bd8", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:bf7c192b-2cae-4408-b064-b227974c751d", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "childassetId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fa3e56c6-550c-4f2a-970d-2c7cad4b962d", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:f794c412-4f20-4a36-bca7-bee75027380e", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "childassetId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:52b808cd-bd9b-451a-baba-99be73c3c7dd", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:75ef7002-e438-4349-a416-9888da2bae25", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "childassetId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:70c2a674-8246-4922-ac74-5cf37d0f3df4", + "ownerItemId" : "urn:uuid:b2bbec50-554a-4622-a95e-f2d52006ac50", "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "childassetId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:bae04eaa-ae94-4153-8708-a69bb7cf1da6", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:7428b90e-1f8d-46f9-a3cc-a7c2ddc7b894", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "childassetId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:676d16ce-6204-4fb7-b2bb-9ba0dd87666d", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:7e475843-a5ab-4a14-801a-c9da31e8e0c1", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "childassetId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d47d5975-669c-4c11-8b27-2aadfd3ebe71", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:a75299aa-aedb-4460-a2af-c16c396fbddf", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "childassetId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:458090b2-a5d3-44cf-843c-70a8c2d07464", + "ownerItemId" : "urn:uuid:ca886066-fb69-4e30-8146-4a9d40d788ae", "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "childassetId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:9b9ca33c-7116-40c6-8634-12c43e84c5d8", + "ownerItemId" : "urn:uuid:5633faa5-0ffc-42d5-b36f-64be713c1d64", "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "childassetId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:50d33e5f-89b3-40b5-b1fe-3a3884174be3", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:abfceb70-6688-42c5-bb35-59db6e7698d4", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "childassetId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -171277,7 +170303,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-225047452744455302636553", + "batteryIDDMCCode" : "NO-115445174246140951066641", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -171316,16 +170342,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2024-02-18", - "version" : 1.3, - "status" : "Approved" + "issueDate" : "2024-02-11", + "version" : 1.7, + "status" : "Expired" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.6302, + "diameter" : 229.6834, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -171333,22 +170359,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2024-02-05", + "placedOnMarket" : "2023-12-20", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-225047452744455302636553", + "value" : "NO-115445174246140951066641", "key" : "PartInstanceID" } ], - "gtin" : " 14780081", + "gtin" : " 69178334", "additionalCode" : [ { "name" : "TARIC", - "value" : "409566483" + "value" : "442163541" } ] }, "sources" : { @@ -171370,7 +170396,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "SubstanceOfConcern", + "category" : "Sustainability", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -171399,12 +170425,12 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2024-02-26", + "date" : "2024-03-21", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" } ], - "reusablePackaging" : false, + "reusablePackaging" : true, "spareParts" : [ { "partId" : "Aluminum Housing 952/C", "name" : "Aluminum Housing", @@ -171415,9 +170441,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 1.9548 ] + "left" : [ 8.6638 ] }, - "id" : "SS5922" + "id" : "WZ3812" } ] }, "additionalData" : [ { @@ -171440,12 +170466,12 @@ } ], "sustainability" : { "material" : [ { - "recycled" : true, + "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "Others" + "name" : "Manganese" } ], - "critical" : [ "Cobalt" ], + "critical" : [ "Nickel" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -171455,15 +170481,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 101 + "carbonContentTotal" : 116 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AXS3", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003AYRE", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003B3NX", + "manufacturerId" : "BPNL00000003AVTH" } } } ], @@ -171475,31 +170501,47 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AVTH" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -171514,11 +170556,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-03-06", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-12", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -171528,35 +170570,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "725804", + "orderNumber" : "817508", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "2851", + "referencedStandard" : "GB", + "referencedStandardID" : "5412", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -171568,21 +170610,21 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -171603,7 +170645,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-053023736599742615848117", + "value" : "NO-977481276724065445855567", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -171614,7 +170656,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -171626,10 +170668,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "03" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", + "assetId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -171638,17 +170680,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:54182658-d04f-465b-8f01-a728b833239e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:10ae8c6a-5dfd-47f5-9a3a-4dca8ac3efa3", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -171661,24 +170703,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -171904,7 +170928,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-053023736599742615848117", + "batteryIDDMCCode" : "NO-977481276724065445855567", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -171923,31 +170947,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:fba6d959-ded0-4335-b0ca-ffaea5daf6ee", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "03", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:b11fd0ce-c6c5-40fc-945a-a3e7bf0a3855", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -171962,11 +171002,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-03-23", + "currentStateOfHealthTimestamp" : "2016-08-02", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-18", + "currentStateOfHealthTimestamp" : "2024-03-26", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -171976,10 +171016,10 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "816796", + "orderNumber" : "762845", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -171988,13 +171028,13 @@ "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -172003,8 +171043,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "1874", + "referencedStandard" : "ISO", + "referencedStandardID" : "9649", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -172016,11 +171056,11 @@ "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -172036,7 +171076,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } } } @@ -172051,7 +171091,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-732864797332146475523520", + "value" : "NO-828137125787287455447241", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -172062,7 +171102,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -172074,10 +171114,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", + "assetId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -172086,17 +171126,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:59835551-c523-48bf-b101-a46ac58c71af", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:ec76f74a-1ad6-4005-8df9-01aef21fe32a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -172109,24 +171149,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -172352,7 +171374,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-732864797332146475523520", + "batteryIDDMCCode" : "NO-828137125787287455447241", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -172371,31 +171393,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c2bcddc3-a4fa-4de1-899c-78a710197a26", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f32ce766-8520-4990-ac35-ff5f98edf459", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -172410,11 +171448,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-03", + "currentStateOfHealthTimestamp" : "2020-09-09", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-23", + "currentStateOfHealthTimestamp" : "2024-03-12", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -172424,35 +171462,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "544648", + "orderNumber" : "137900", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "8094", + "referencedStandard" : "EN", + "referencedStandardID" : "5589", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -172464,27 +171502,27 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } @@ -172499,7 +171537,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-319097498421815324263900", + "value" : "NO-485645309522244941900619", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -172510,7 +171548,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -172522,10 +171560,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "05" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", + "assetId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -172534,17 +171572,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:44f7751a-913f-440f-ac80-fb65c2995962", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:91b540e0-5f05-45ec-b9b9-9cdd7353fa02", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -172557,24 +171595,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -172800,7 +171820,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-319097498421815324263900", + "batteryIDDMCCode" : "NO-485645309522244941900619", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -172819,31 +171839,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:0bcfb2b0-31e1-466e-8fa2-58b1ce2b98a8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f08887ef-49ef-4524-83da-4fd32ca1ea16", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -172858,11 +171894,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-01-14", + "currentStateOfHealthTimestamp" : "2021-03-01", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-03", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -172872,19 +171908,19 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "858159", + "orderNumber" : "744028", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -172899,8 +171935,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "8825", + "referencedStandard" : "IS", + "referencedStandardID" : "2219", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -172911,8 +171947,8 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -172922,7 +171958,7 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -172932,7 +171968,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 } } } @@ -172947,7 +171983,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-640293564015841806077713", + "value" : "NO-337416006796549425928892", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -172958,7 +171994,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -172973,7 +172009,7 @@ "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", + "assetId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -172982,17 +172018,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:af32bd0f-dfc8-4288-842c-0f271e7897a2", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:10ebad4e-9648-4940-a54c-743eb6414fef", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -173005,24 +172041,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -173248,7 +172266,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-640293564015841806077713", + "batteryIDDMCCode" : "NO-337416006796549425928892", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -173267,31 +172285,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d91811b9-14ef-4ddc-92fb-5ab7c0d4da3f", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:2c9cc341-85ee-48fb-98dd-ab23fea3cdb7", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -173306,11 +172340,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-01-23", + "currentStateOfHealthTimestamp" : "2020-01-28", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-13", + "currentStateOfHealthTimestamp" : "2024-03-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -173320,35 +172354,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "487026", + "orderNumber" : "549994", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 9 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6119", + "referencedStandard" : "IS", + "referencedStandardID" : "5109", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -173357,30 +172391,30 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } @@ -173395,7 +172429,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-407255088704313260876574", + "value" : "NO-037945966809951266943918", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -173406,7 +172440,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -173418,10 +172452,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "04" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", + "assetId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -173430,17 +172464,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ca42c12d-0261-411f-ac01-f5470fdf6dcc", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:b494a607-de1f-4658-a832-1a54ce39d942", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -173453,24 +172487,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -173696,7 +172712,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-407255088704313260876574", + "batteryIDDMCCode" : "NO-037945966809951266943918", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -173715,31 +172731,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:553b860d-7fce-4c3b-8323-0205ff5cd70b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:c9426628-2513-4ed1-848a-dcd4b51f7c54", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -173754,11 +172786,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-04", + "currentStateOfHealthTimestamp" : "2015-05-13", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-14", + "currentStateOfHealthTimestamp" : "2024-03-19", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -173768,35 +172800,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "377925", + "orderNumber" : "527665", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 17 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "3125", + "referencedStandard" : "DIN", + "referencedStandardID" : "6197", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -173808,11 +172840,11 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { @@ -173822,7 +172854,7 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -173843,7 +172875,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-005247654431541669301900", + "value" : "NO-776976109882988020968924", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -173854,7 +172886,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -173866,10 +172898,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", + "assetId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -173878,17 +172910,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:4e658c29-5d6c-450c-8e38-22b1e7865515", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:d362b959-dd4c-41f2-b10b-7302b453ea89", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -173901,24 +172933,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -174144,7 +173158,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-005247654431541669301900", + "batteryIDDMCCode" : "NO-776976109882988020968924", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -174163,31 +173177,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:622dbe19-5d89-46e5-91a1-6db7e3062355", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:d972742f-c77b-4dae-906f-2606b8160fe5", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -174202,11 +173232,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2022-04-08", + "currentStateOfHealthTimestamp" : "2018-12-21", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-09", + "currentStateOfHealthTimestamp" : "2024-03-04", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -174216,35 +173246,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "899144", + "orderNumber" : "952236", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "4990", + "referencedStandard" : "ASME", + "referencedStandardID" : "4086", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -174255,28 +173285,28 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } @@ -174291,7 +173321,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-780079092640291814128113", + "value" : "NO-934956959738616108763308", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -174302,7 +173332,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -174314,10 +173344,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "01" + "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", + "assetId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -174326,17 +173356,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ac6e4d6e-7747-4276-b180-de7de0434af9", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:08f84a09-0fa5-495b-ae14-5e9478f8d32a", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -174349,24 +173379,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -174592,7 +173604,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-780079092640291814128113", + "batteryIDDMCCode" : "NO-934956959738616108763308", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -174611,31 +173623,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:8349d1a6-19c5-4a3c-83d1-86673f06b234", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -174650,11 +173678,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-06-19", + "currentStateOfHealthTimestamp" : "2021-01-14", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-13", + "currentStateOfHealthTimestamp" : "2024-03-30", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -174664,35 +173692,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "235877", + "orderNumber" : "834398", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 11 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6294", + "referencedStandard" : "JIS", + "referencedStandardID" : "8419", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -174703,12 +173731,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { @@ -174718,13 +173746,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } } } @@ -174739,7 +173767,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-498860958581428795638850", + "value" : "NO-285293624337086766771059", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -174750,7 +173778,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -174765,7 +173793,7 @@ "itemVersion" : "05" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", + "assetId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -174774,17 +173802,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:508524ec-32c0-44e1-a888-5792e65b603e", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:7d49942a-c8ba-4ba1-9376-292fd36ff490", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -174797,24 +173825,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -175040,7 +174050,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-498860958581428795638850", + "batteryIDDMCCode" : "NO-285293624337086766771059", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -175059,31 +174069,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:7014b9be-57d6-4976-aa9a-6cacf0cb810b", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "05", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:f719e96e-2d7a-4d25-b351-7ad81db4f12a", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -175098,11 +174124,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2017-08-04", + "currentStateOfHealthTimestamp" : "2015-01-18", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-20", + "currentStateOfHealthTimestamp" : "2024-04-02", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -175112,23 +174138,23 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "641749", + "orderNumber" : "909713", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, @@ -175139,8 +174165,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "7206", + "referencedStandard" : "JIS", + "referencedStandardID" : "9369", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -175156,13 +174182,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -175172,7 +174198,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -175187,7 +174213,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-439183532206865037256516", + "value" : "NO-849021036936084853818694", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -175198,7 +174224,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -175213,7 +174239,7 @@ "itemVersion" : "04" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", + "assetId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -175222,17 +174248,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:135aad36-9dcc-4371-80aa-dd154f43b993", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:1c6039cc-bcaf-44d8-a904-a75cce908492", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:f5b0d0f6-a562-474b-a7e9-fb6fb6d566ab", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -175245,24 +174271,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -175488,7 +174496,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-439183532206865037256516", + "batteryIDDMCCode" : "NO-849021036936084853818694", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -175507,31 +174515,47 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:6fbdb611-7208-4306-a7aa-94d3dd3a8fbd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "04", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:442d51f5-313a-4263-97f0-a35e8657da22", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", @@ -175546,11 +174570,11 @@ "minimalStateOfHealthPhase" : "as specified by OEM" }, "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-02-12", + "currentStateOfHealthTimestamp" : "2014-12-12", "currentStateOfHealthPhase" : "as specified by OEM", "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", + "currentStateOfHealthTimestamp" : "2024-03-07", "currentStateOfHealthPhase" : "as recieved by dismantling", "currentStateOfHealthValue" : 95 } ], @@ -175560,35 +174584,35 @@ }, "type" : "HVB" } ], - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "bpnl" : "BPNL00000003AYRE", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "395682", + "orderNumber" : "525465", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 21 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN EN", - "referencedStandardID" : "9300", + "referencedStandard" : "JASO", + "referencedStandardID" : "6006", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -175597,14 +174621,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -175635,7 +174659,7 @@ "value" : "8840838-04", "key" : "manufacturerPartId" }, { - "value" : "NO-677437679047578781943212", + "value" : "NO-135372397104503960436427", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -175646,7 +174670,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "partTypeInformation" : { "manufacturerPartId" : "8840374-09", "customerPartId" : "8840374-09", @@ -175658,10 +174682,10 @@ "nameAtManufacturer" : "ZB ZELLE", "nameAtCustomer" : "ZB ZELLE" }, - "itemVersion" : "03" + "itemVersion" : "01" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", + "assetId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", "manufacturerId" : "BPNL00000003AYRE", "childItems" : [ { "item" : [ { @@ -175670,17 +174694,17 @@ "key" : "BPNL00000003AYRE:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:634cd7dd-9090-468e-9e91-cc286eccb9e1", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:6bc36d8e-db18-4739-94cd-8f5e1391efdb", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "childassetId" : "urn:uuid:74faafd7-4d71-4a4b-af0e-464fc9f7195e", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], @@ -175693,24 +174717,6 @@ "height" : 610 } } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -175936,7 +174942,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-677437679047578781943212", + "batteryIDDMCCode" : "NO-135372397104503960436427", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -175955,28 +174961,44 @@ } ], "productType" : "cell" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:70663164-82b8-44a4-bfc3-e4117970c4f3", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:44dd31f4-eaea-4051-81cf-6eefdfd41615", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", + "partTypeInformation" : { + "ownerPartId" : "8840374-09", + "partVersion" : "01", + "itemCategory" : "component", + "partDescription" : "ZB ZELLE", + "partClassification" : [ { + "value" : "ZB ZELLE", + "key" : "BPNL00000003AYRE:PartFamily" } ], + "nameAtOwner" : "ZB ZELLE" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:8406a1e2-ddf8-4d55-a24b-4353c7e75d3e", + "parentItems" : [ { + "catenaXId" : "urn:uuid:e8a3fbd1-fb68-4f71-bd6c-bceaf1a02a64", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] + } ], + "customers" : [ "BPNL00000003AYRE" ] } ] }, { "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { "component" : [ { "materialName" : "Cooper", - "recycledContent" : 43, + "recycledContent" : 36, "materialClass" : "3.1", "quantity" : { "unit" : "unit:kilogram", @@ -175986,7 +175008,7 @@ "materialAbbreviation" : "CO7" }, { "materialName" : "Polyamid6", - "recycledContent" : 11, + "recycledContent" : 8, "materialClass" : "5.5.1", "quantity" : { "unit" : "unit:kilogram", @@ -175996,7 +175018,7 @@ "materialAbbreviation" : "POL6" }, { "materialName" : "Carbon Steel", - "recycledContent" : 12, + "recycledContent" : 65, "materialClass" : "1.1.2", "quantity" : { "unit" : "unit:kilogram", @@ -176007,112 +175029,112 @@ } ] } ], "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", "childItems" : [ { - "catenaXId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "catenaXId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "catenaXId" : "urn:uuid:cf30cafc-c2fb-43f1-9c05-a6bcec700184", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "catenaXId" : "urn:uuid:d43a37a4-dcc3-40c7-a60e-c2d27a660db3", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "catenaXId" : "urn:uuid:18a29555-6a3e-4e9f-9dc3-99ad5124b7b5", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "catenaXId" : "urn:uuid:c2ed666d-9897-4659-a92d-8839287ed5f0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "catenaXId" : "urn:uuid:4db938b0-e823-4849-868b-5063f7becafe", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "catenaXId" : "urn:uuid:acfa6c4d-39fe-4ed2-bc35-ac74de88cfd0", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "catenaXId" : "urn:uuid:10bc7dc3-2375-4b52-9803-5706c7867476", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "catenaXId" : "urn:uuid:5c00f6f2-cda6-4f39-82b1-1aecece9d0ac", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "catenaXId" : "urn:uuid:f970909b-c9ae-4374-91b8-c9de77bede7f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "catenaXId" : "urn:uuid:0c1baa6e-a14a-4478-8a95-996fe816c054", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 20 }, "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", @@ -176120,35 +175142,35 @@ "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "bpnl" : "BPNL00000003AYRE", + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "bpnl" : "BPNL00000003AVTH", "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "174324", + "orderNumber" : "341300", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "3450", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6865", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -176164,13 +175186,13 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -176180,7 +175202,7 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } @@ -176189,13 +175211,13 @@ } ], "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", + "value" : "BPNL00000003AVTH", "key" : "manufacturerId" }, { "value" : "8840837-48", "key" : "manufacturerPartId" }, { - "value" : "NO-501018305274784241602073", + "value" : "NO-883830164520334043271156", "key" : "partInstanceId" } ], "manufacturingInformation" : { @@ -176206,7 +175228,7 @@ "function" : "production" } ] }, - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", "partTypeInformation" : { "manufacturerPartId" : "8840838-04", "customerPartId" : "8840838-04", @@ -176218,240 +175240,222 @@ "nameAtManufacturer" : "HV MODUL", "nameAtCustomer" : "HV MODUL" }, - "itemVersion" : "03" + "itemVersion" : "02" } ], "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "manufacturerId" : "BPNL00000003AYRE", + "assetId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "manufacturerId" : "BPNL00000003AVTH", "childItems" : [ { "item" : [ { "itemClassification" : [ { "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:7005e9ff-95c3-4bd2-8bfd-66ab8fbc303b", - "itemVersion" : "03", + "ownerItemId" : "urn:uuid:e67f7429-1976-4f41-8f87-ffd323972af2", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:1fc83fab-e165-483b-8eb4-3f034acad3b5", + "childassetId" : "urn:uuid:b0157d36-c2ba-47ee-aca2-d39d18f1b7a4", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:d3f3cf42-a96e-4d3c-8d03-7d066ea0036b", - "itemVersion" : "02", + "ownerItemId" : "urn:uuid:36437a29-c6e1-4531-910c-81d7fb231669", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "childassetId" : "urn:uuid:cf30cafc-c2fb-43f1-9c05-a6bcec700184", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:ea6af487-5e6c-4f3f-843d-61f43eaea0c3", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:8472882d-fad2-47db-86dc-1fd3e634ed05", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "childassetId" : "urn:uuid:d43a37a4-dcc3-40c7-a60e-c2d27a660db3", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fae704ff-3e17-44b9-bdee-193c432cf0f3", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:9e31c81e-d95b-449f-aa83-af67b194210a", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "childassetId" : "urn:uuid:18a29555-6a3e-4e9f-9dc3-99ad5124b7b5", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:fdd6c61a-0001-4800-8abb-1be0a38c170c", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:e6e3aa87-be68-43b3-92d4-468ff695af5c", + "itemVersion" : "05", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", + "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "childassetId" : "urn:uuid:c2ed666d-9897-4659-a92d-8839287ed5f0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:2ea28c34-ca0e-4f63-ad60-55e245621623", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:621ac2a3-dbd4-4ed3-95aa-8b2c14b35205", + "itemVersion" : "02", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "childassetId" : "urn:uuid:4db938b0-e823-4849-868b-5063f7becafe", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:598c43f3-72c8-4951-906a-a3798416e804", - "itemVersion" : "04", + "ownerItemId" : "urn:uuid:0eb74dcc-467f-420e-bcc5-681aee0a4ad7", + "itemVersion" : "01", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "childassetId" : "urn:uuid:acfa6c4d-39fe-4ed2-bc35-ac74de88cfd0", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:703769af-1d9a-4acc-a985-30ef7290e07a", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:aa6b6ccc-13f2-423b-bac9-ae08c9bdd4ab", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "right", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "childassetId" : "urn:uuid:10bc7dc3-2375-4b52-9803-5706c7867476", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:030202dc-0537-4956-bcfb-f7418398730c", - "itemVersion" : "05", + "ownerItemId" : "urn:uuid:999be720-659b-4377-9cf5-e217470c7003", + "itemVersion" : "03", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", + "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "childassetId" : "urn:uuid:5c00f6f2-cda6-4f39-82b1-1aecece9d0ac", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:a6e0d698-113b-49d9-a766-e3f0c60b9c3e", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:c3fd2ec2-029c-4aff-bc4e-b97bd439db29", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "childassetId" : "urn:uuid:f970909b-c9ae-4374-91b8-c9de77bede7f", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" }, { "item" : [ { "itemClassification" : [ { "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" + "key" : "BPNL00000003AVTH:PartFamily" } ], "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "quantityNumber" : 20, + "measurementUnit" : "unit:piece" }, - "ownerItemId" : "urn:uuid:752a5318-a0c1-42c6-b2ee-05b355f8f9e6", - "itemVersion" : "01", + "ownerItemId" : "urn:uuid:2c84c10e-2afd-499c-8542-45a635e89168", + "itemVersion" : "04", "itemDescription" : "The steering wheel is nice and round", "createdOn" : "2022-02-03T14:48:54.709Z", "itemPositioning" : "left", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "childassetId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "childassetId" : "urn:uuid:0c1baa6e-a14a-4478-8a95-996fe816c054", "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { "electrochemicalProperties" : { "ratedCapacity" : 210, @@ -176677,7 +175681,7 @@ "dateOfManufacturing" : "2023-03-07" }, "batteryIdentification" : { - "batteryIDDMCCode" : "NO-501018305274784241602073", + "batteryIDDMCCode" : "NO-883830164520334043271156", "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" }, @@ -176716,16 +175720,16 @@ "metadata" : { "validityDate" : "2000-01-01", "economicOperator" : { - "id" : "BPNL00000003AYRE", + "id" : "BPNL00000003AVTH", "eori" : "DE012345678901" }, - "issueDate" : "2023-09-10", - "version" : 2.5, - "status" : "Invalid" + "issueDate" : "2023-01-21", + "version" : 2.6, + "status" : "Approved" }, "characteristics" : { "physicalDimensionsProperty" : { - "diameter" : 229.682, + "diameter" : 229.6349, "width" : 229.6, "length" : 471.1, "weight" : 14.1, @@ -176733,22 +175737,22 @@ }, "lifespan" : { "unit" : "unit:year", - "value" : 17 + "value" : 16 } }, "commercial" : { - "placedOnMarket" : "2020-01-27", + "placedOnMarket" : "2022-11-11", "warranty" : 60 }, "identification" : { "localIdentifiers" : [ { - "value" : "NO-501018305274784241602073", + "value" : "NO-883830164520334043271156", "key" : "PartInstanceID" } ], - "gtin" : " 94170391", + "gtin" : " 14656793", "additionalCode" : [ { "name" : "TARIC", - "value" : "717119110" + "value" : "533496939" } ] }, "sources" : { @@ -176770,7 +175774,7 @@ }, "substanceOfConcernDisassembly" : { "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Sustainability", + "category" : "Passport", "type" : "catena-x.net/testdata/productpass/SN12345678", "content" : "catena-x.net/testdata/productpass/SN12345678" }, @@ -176799,7 +175803,7 @@ }, "handling" : { "maintenanceHistory" : [ { - "date" : "2023-11-17", + "date" : "2023-07-21", "activity" : "Inspection", "description" : "Battery test", "title" : "Maintenance Service" @@ -176815,9 +175819,9 @@ "name" : "Lead", "location" : "HvbCell", "concentration" : { - "left" : [ 8.5621 ] + "left" : [ 3.7999 ] }, - "id" : "JU8706" + "id" : "NT4743" } ] }, "additionalData" : [ { @@ -176843,9 +175847,9 @@ "recycled" : false, "renewable" : false, "percentage" : 5, - "name" : "UV Varnish" + "name" : "Insulator" } ], - "critical" : [ "Graphite" ], + "critical" : [ "Cobalt" ], "carbonFootprint" : { "crossSectoralStandard" : "GHG Protocol Product standard", "productOrSectorSpecificRules" : [ { @@ -176855,15 +175859,15 @@ "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" } ] } ], - "carbonContentTotal" : 113 + "carbonContentTotal" : 102 }, "state" : "first life" }, "operation" : { - "importer" : "BPNL00000003AYRE", + "importer" : "BPNL00000003B2OM", "manufacturer" : { - "facilityId" : "BPNL00000003B2OM", - "manufacturerId" : "BPNL00000003AYRE" + "facilityId" : "BPNL00000003AYRE", + "manufacturerId" : "BPNL00000003AVTH" } } } ], @@ -176875,88 +175879,195 @@ } ], "productType" : "module" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "urn:samm:io.catenax.part_as_specified:3.0.0#PartAsSpecified" : [ { + "validityPeriod" : { + "validFrom" : "2023-02-10T07:17:52.396Z", + "validTo" : "2023-02-10T07:17:52.396Z" + }, + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "partTypeInformation" : { + "ownerPartId" : "8840838-04", + "partVersion" : "02", + "itemCategory" : "component", + "partDescription" : "HV MODUL", + "partClassification" : [ { + "value" : "HV MODUL", + "key" : "BPNL00000003AVTH:PartFamily" } ], + "nameAtOwner" : "HV MODUL" + } + } ], + "urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt" : [ { + "catenaXId" : "urn:uuid:3d45e8cb-2601-446c-9248-2f7f180e1313", + "parentItems" : [ { + "catenaXId" : "urn:uuid:7f701f37-8aff-4059-92da-02e8fc4bce35", + "isOnlyPotentialParent" : false, + "quantity" : { + "unit" : "unit:piece", + "value" : 20 + }, + "businessPartner" : "BPNL00000003AVTH", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "customers" : [ "BPNL00000003AVTH" ] + } ] + } + , { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B5MJ", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ], + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "partTypeInformation" : { + "manufacturerPartId" : "ZX-55", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Model A" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "sites" : [ { + "functionValidUntil" : "2032-08-09T02:11:44.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2014-05-02T12:21:56.000Z" + } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 6 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "classification" : "product", + "nameAtManufacturer" : "OEM A High Voltage Battery" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2019-08-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-06", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" } ], - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "68136", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "sites" : [ { + "functionValidUntil" : "2030-09-23T02:17:24.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2018-11-03T14:27:17.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "964704", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 15 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "4731", + "referencedStandard" : "AISI", + "referencedStandardID" : "5936", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -176965,14 +176076,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -176982,429 +176093,242 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } } } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-713498680690089344875157", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "02" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "manufacturerId" : "BPNL00000003AYRE", + } ] + }, { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:db2e23a7-d8ef-4bb6-9711-b63286662691", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "quantity" : { + "unit" : "unit:piece", + "value" : 10 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.11 + }, + "businessPartner" : "BPNL00000003AXS3", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } + "manufacturerPartId" : "8840838-04", + "classification" : "product", + "nameAtManufacturer" : "HV Modul" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "sites" : [ { + "functionValidUntil" : "2031-10-12T04:51:28.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2019-12-29T16:36:39.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "44058", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "AISI", + "referencedStandardID" : "2920", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-713498680690089344875157", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:2b475733-8f83-4bf5-bae6-30c67f2c474d", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "classification" : "product", + "nameAtManufacturer" : "ZB ZELLE" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-12-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9" } ], - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "489279", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "sites" : [ { + "functionValidUntil" : "2031-03-17T07:19:55.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2016-03-08T11:56:01.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "358677", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 10 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "2.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "JASO", - "referencedStandardID" : "8875", + "referencedStandardID" : "8149", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -177415,18 +176339,18 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -177442,417 +176366,340 @@ } } } ] + } ] + }, { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "childItems" : [ ] } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-754901179164912952471287", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "manufacturerPartId" : "7A047C7-01", + "classification" : "product", + "nameAtManufacturer" : "N Tier A CathodeMaterial" }, - "itemVersion" : "05" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", + "sites" : [ { + "functionValidUntil" : "2028-09-25T14:38:07.000Z", + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2013-01-13T21:53:56.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "189071", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "ownerItemId" : "urn:uuid:1004fb48-3648-4f61-bc67-dd0112550aaf", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "9597", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] + } ] + }, { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "childItems" : [ ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } + "manufacturerPartId" : "9A047C7-01", + "classification" : "product", + "nameAtManufacturer" : "Sub Tier B Sealant" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 + "parentCatenaXId" : "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", + "sites" : [ { + "functionValidUntil" : "2028-11-24T09:15:39.000Z", + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production", + "functionValidFrom" : "2020-02-27T23:48:03.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "256763", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 + }, + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "5169", + "materialNameStandardizedValue" : "PP-TD10" }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-754901179164912952471287", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:847a61e9-f11a-4409-a081-e01113b0be07", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "classification" : "product", + "nameAtManufacturer" : "Tier A Gearbox" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2018-12-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "currentStateOfHealthTimestamp" : "2024-02-26", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" } ], - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "659447", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "sites" : [ { + "functionValidUntil" : "2024-11-10T09:37:04.000Z", + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2017-08-21T23:20:17.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "969986", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "5.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "2372", + "referencedStandard" : "JIS", + "referencedStandardID" : "3760", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -177863,22 +176710,22 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { @@ -177890,407 +176737,58 @@ } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-212384038764272037807021", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:ac4d19b7-72da-4a03-a860-98bcdb1bf69d", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-212384038764272037807021", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:34b3e5cf-98fe-43af-9441-41f59de12e67", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-07-23", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-25", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 - } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 + "bpnl" : "BPNL00000003B3NX", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", + "partTypeInformation" : { + "manufacturerPartId" : "6740244-02", + "classification" : "product", + "nameAtManufacturer" : "Sub Tier A Sensor" }, - "type" : "HVB" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "474433", + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "472610", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 19 + "percentageOfMaterialWeight" : 13 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -178299,8 +176797,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "6538", + "referencedStandard" : "GB", + "referencedStandardID" : "9865", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -178309,20 +176807,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -178332,411 +176830,74 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } } } ] + } ] + }, { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "childItems" : [ ] } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-281978893666347349939292", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "manufacturerPartId" : "7A047KK-01", + "classification" : "product", + "nameAtManufacturer" : "N Tier A NTier Product" }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:f1e4467c-8639-4f9c-a119-7cd31e41d021", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-281978893666347349939292", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:d55d34ad-8de4-4e72-9b0d-8f4d43768b94", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "parentCatenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-05-16", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" } ], - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "681473", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", + "sites" : [ { + "functionValidUntil" : "2029-12-12T20:52:56.000Z", + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2013-02-12T16:37:07.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "809218", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 18 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "3.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, @@ -178747,8 +176908,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "IS", - "referencedStandardID" : "6801", + "referencedStandard" : "JASO", + "referencedStandardID" : "2931", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -178757,446 +176918,258 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } } } } } ] + } ] + }, { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "childItems" : [ ] } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-197282769557955963065227", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", + "bpnl" : "BPNL00000003B0Q0", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "manufacturerPartId" : "7A987KK-04", + "classification" : "product", + "nameAtManufacturer" : "N Tier A Plastics" }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:e30d0e57-17ac-442f-8793-874349153f9a", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", + "sites" : [ { + "functionValidUntil" : "2031-04-17T22:24:22.000Z", + "catenaXsiteId" : "BPNS00000003B0Q0", + "function" : "production", + "functionValidFrom" : "2019-03-30T08:41:08.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "736994", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "4785", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-197282769557955963065227", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:29f9cc73-a4f9-4eb9-afaa-93b51e3776f8", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003B3NX", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "quantity" : { + "unit" : "unit:kilogram", + "value" : 0.3301 + }, + "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "partTypeInformation" : { + "manufacturerPartId" : "ZX-55", + "classification" : "product", + "nameAtManufacturer" : "Tier B ECU1" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2016-02-22", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "currentStateOfHealthTimestamp" : "2024-02-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" } ], - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "614739", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "sites" : [ { + "functionValidUntil" : "2031-07-14T14:36:49.000Z", + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production", + "functionValidFrom" : "2018-02-07T04:54:43.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "906993", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 24 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2371", + "referencedStandard" : "EN", + "referencedStandardID" : "1942", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -179207,444 +177180,325 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, + "isMassBalanced" : false, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } } } ] + } ] + }, { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "childItems" : [ ] } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-513627497057751447854533", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", + "bpnl" : "BPNL00000003AXS3", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "manufacturerPartId" : "6775244-06", + "classification" : "product", + "nameAtManufacturer" : "Sub Tier B Glue" }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:8efa5dca-68db-4de1-979a-59cad63e1c6d", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 + "parentCatenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", + "sites" : [ { + "functionValidUntil" : "2029-07-21T18:50:17.000Z", + "catenaXsiteId" : "BPNS00000003AXS3", + "function" : "production", + "functionValidFrom" : "2016-05-20T12:11:20.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "748259", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "7650", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-513627497057751447854533", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c66b3a31-5a61-4471-b05b-6919a3057111", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "catenaXId" : "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ], + "bpnl" : "BPNL00000003AVTH", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "partTypeInformation" : { + "manufacturerPartId" : "FJ-87", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Model B" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "sites" : [ { + "functionValidUntil" : "2028-09-29T16:06:36.000Z", + "catenaXsiteId" : "BPNS000000815DMY", + "function" : "production", + "functionValidFrom" : "2018-01-28T10:00:57.000Z" + } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:gram", + "quantityNumber" : 1580, + "value" : 1580 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL50096894aNXY", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "partTypeInformation" : { + "manufacturerPartId" : "123564887-01", + "classification" : "product", + "nameAtManufacturer" : "Tire Model A" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2014-07-25", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "currentStateOfHealthTimestamp" : "2024-02-15", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" } ], - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "970142", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "sites" : [ { + "functionValidUntil" : "2026-12-22T17:14:12.000Z", + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2015-01-20T06:24:12.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "836794", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 15 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JIS", - "referencedStandardID" : "2928", + "referencedStandard" : "AS", + "referencedStandardID" : "9619", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -179653,446 +177507,413 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-222036500728807004532007", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", - "manufacturerId" : "BPNL00000003AYRE", + } ] + }, { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:6a68c0ef-5bcd-4851-8be8-9c7594c4d226", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", + "bpnl" : "BPNL00000007OR16", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } + "manufacturerPartId" : "9953421-03", + "classification" : "product", + "nameAtManufacturer" : "Natural Rubber Product(40KG blocks)" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 + "parentCatenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "sites" : [ { + "functionValidUntil" : "2024-07-24T09:37:51.000Z", + "catenaXsiteId" : "BPNS000000000001", + "function" : "production", + "functionValidFrom" : "2018-12-11T18:43:32.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "545187", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 16 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "3409", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 14 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-222036500728807004532007", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "partTypeInformation" : { + "manufacturerPartId" : "A26581-11", + "classification" : "product", + "nameAtManufacturer" : "Natural Rubber" }, - "cO2FootprintTotal" : 124 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "productType" : "cell" + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c7447a9c-d843-43af-803d-ee2b091f0296", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", + "sites" : [ { + "functionValidUntil" : "2032-10-30T09:02:30.000Z", + "catenaXsiteId" : "BPNS000000000DQB", + "function" : "production", + "functionValidFrom" : "2020-05-05T08:53:49.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "942976", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], + "materialNameStandardized" : { + "referencedStandard" : "JASO", + "referencedStandardID" : "3948", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B5MJ", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] + } ], + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "partTypeInformation" : { + "manufacturerPartId" : "XK-34", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Model C" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "sites" : [ { + "functionValidUntil" : "2026-12-11T19:42:32.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2018-02-14T14:22:52.000Z" + } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AXS3", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003B5MJ", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "partTypeInformation" : { + "manufacturerPartId" : "39478586-36", + "classification" : "product", + "nameAtManufacturer" : "Tier B ECU2" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-04-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-07", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77" } ], - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "577396", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", + "sites" : [ { + "functionValidUntil" : "2025-01-30T13:52:30.000Z", + "catenaXsiteId" : "BPNS00000003B5MJ", + "function" : "production", + "functionValidFrom" : "2017-09-09T18:44:34.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "951105", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 12 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:centigram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "JASO", - "referencedStandardID" : "5747", + "referencedStandard" : "AS", + "referencedStandardID" : "4288", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -180101,14 +177922,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { @@ -180118,413 +177939,373 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } } } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" + } ] + }, { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "NO-867497373255801160984990", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "manufacturerPartId" : "ZZ-88", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Model D" }, - "itemVersion" : "05" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", - "manufacturerId" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "sites" : [ { + "functionValidUntil" : "2024-11-16T00:28:19.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2018-12-24T11:07:15.000Z" + } ] + } ] + }, { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:9302bb26-ce53-4b0f-8d74-2ef39075b3ef", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } + "manufacturerPartId" : "59878587-80", + "classification" : "product", + "nameAtManufacturer" : "OEM C Engine" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "sites" : [ { + "functionValidUntil" : "2032-03-19T20:02:16.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2015-04-23T09:07:11.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "523960", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 13 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "5.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "3921", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-867497373255801160984990", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e6705ef0-dc3d-46cd-b758-60ec50b3ec9e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Cylinder Head" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2015-11-29", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" } ], - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "228999", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "sites" : [ { + "functionValidUntil" : "2032-08-22T00:43:30.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2014-12-08T13:54:47.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "511024", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 19 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -180535,12 +178316,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "2870", + "referencedStandard" : "JIS", + "referencedStandardID" : "9500", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -180551,12 +178332,12 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -180566,404 +178347,313 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 13 } } } } } ] + } ] + }, { + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "partTypeInformation" : { + "manufacturerPartId" : "7B147D8-19", + "classification" : "product", + "nameAtManufacturer" : "OEM C Rod" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "NO-234433363527778995608209", - "key" : "partInstanceId" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f" } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:0f13f249-d965-477f-ae0a-08ab28801cf4", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", + "sites" : [ { + "functionValidUntil" : "2032-03-20T22:20:49.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2012-12-21T01:52:46.000Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 - }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "404032", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 17 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "6573", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-234433363527778995608209", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "partTypeInformation" : { + "manufacturerPartId" : "6X247E5-99", + "classification" : "product", + "nameAtManufacturer" : "Tier C Crankshaft" }, - "cO2FootprintTotal" : 124 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "productType" : "cell" + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:bb6bf085-27fe-43c9-82eb-91aba653b8cd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "sites" : [ { + "functionValidUntil" : "2026-09-05T07:34:30.000Z", + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production", + "functionValidFrom" : "2017-11-16T10:02:29.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "188306", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 8 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Bluecert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "2946", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "partTypeInformation" : { + "manufacturerPartId" : "2Z247F8-70", + "classification" : "product", + "nameAtManufacturer" : "TraceX A Crank" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-11-11", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-22", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" } ], - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "574946", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "sites" : [ { + "functionValidUntil" : "2030-04-19T12:30:33.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2014-04-06T05:28:57.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "295762", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { @@ -180972,23 +178662,23 @@ "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "3.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "1733", + "referencedStandard" : "EN", + "referencedStandardID" : "8628", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -180997,20 +178687,20 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -181020,519 +178710,319 @@ "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } } } } } ] + } ] + }, { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "childItems" : [ ] } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-352108796706027868787571", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "manufacturerPartId" : "6260254-43", + "classification" : "product", + "nameAtManufacturer" : "Tier A Plunger" }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:b5da61e9-871c-4ecc-99ba-79b0d377d985", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", + "sites" : [ { + "functionValidUntil" : "2026-06-12T06:53:02.000Z", + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2020-12-17T08:49:16.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "541348", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "5011", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-352108796706027868787571", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:27d6f0a5-c3b0-4461-9e53-a4d7ffbbc792", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:b8788fa7-793c-4a49-a2bb-e4a31705319d", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] }, { - "urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling" : [ { - "component" : [ { - "materialName" : "Cooper", - "recycledContent" : 49, - "materialClass" : "3.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 1.2 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CO7" - }, { - "materialName" : "Polyamid6", - "recycledContent" : 34, - "materialClass" : "5.5.1", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 2.5 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "POL6" - }, { - "materialName" : "Carbon Steel", - "recycledContent" : 40, - "materialClass" : "1.1.2", - "quantity" : { - "unit" : "unit:kilogram", - "value" : 0.23 - }, - "aggregateState" : "solid", - "materialAbbreviation" : "CS2" + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "partTypeInformation" : { + "manufacturerPartId" : "5760234-23", + "classification" : "product", + "nameAtManufacturer" : "Tier C Piston Rod" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" } ] } ], - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "childItems" : [ { - "catenaXId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AXS3", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "parentCatenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ], + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", + "sites" : [ { + "functionValidUntil" : "2032-12-24T15:41:32.000Z", + "catenaXsiteId" : "BPN", + "function" : "production", + "functionValidFrom" : "2014-07-07T02:12:43.000Z", + "catenaXSiteId" : "BPNS00000003CSGV" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "182345", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN", + "referencedStandardID" : "9912", + "materialNameStandardizedValue" : "PP-TD10" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", + "businessPartner" : "BPNL00000003CNKC", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "catenaXId" : "urn:uuid:8676f165-bf4c-4a55-ace1-08df65e2f835", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a1d66637-a7e1-48f6-b242-fa2217f691b6", + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:a462bfe5-5071-4a30-950d-54c1f083e904", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + } ] + } ], + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "partTypeInformation" : { + "manufacturerPartId" : "8760254-76", + "classification" : "product", + "nameAtManufacturer" : "TRACEX A Cylinder" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - }, { - "catenaXId" : "urn:uuid:cb36d626-0fc9-4b0f-b322-de454d6bb41d", + "parentCatenaXId" : "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003AYRE", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "sites" : [ { + "functionValidUntil" : "2029-06-15T11:05:28.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2014-07-26T10:34:55.000Z" } ] } ], - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "90764", + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "931310", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 }, "bioBasedClass" : "gen1", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", @@ -181543,12 +179033,12 @@ "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Greencert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "AS", - "referencedStandardID" : "6177", + "referencedStandard" : "EN", + "referencedStandardID" : "7563", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -181557,796 +179047,326 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } } } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840837-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-513465712429541111831569", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000001111DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", + } ] + }, { + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", "partTypeInformation" : { - "manufacturerPartId" : "8840838-04", - "customerPartId" : "8840838-04", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" + "manufacturerPartId" : "7C147E8-87", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Seal" }, - "itemVersion" : "02" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:0d7c9619-af62-41fe-a888-cecb4ed250cd", - "itemVersion" : "02", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:c6651227-bad6-4b39-b3b0-9fef41230c3a", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:fefa38d5-0efd-4d71-a92a-eeccb72ac3b9", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:4a8b5cf8-93fc-4f6e-abbd-f6df7d5492bd", - "itemVersion" : "03", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:544145c5-6553-4f7f-8450-eacb815b415a", - "itemVersion" : "02", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:b99ab465-e8b8-4686-b604-187720ac60a6", - "itemVersion" : "03", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:f38ef7b5-e5b9-43b7-9161-6c03b3543e18", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:4495b76c-88b4-4590-9533-6c8a1d09dd1f", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:85eb4b3f-dfcb-49ea-b279-3c123b8a4e77", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:8676f165-bf4c-4a55-ace1-08df65e2f835", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:405cb7cb-c22a-44aa-a129-c7395d2415b2", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:a1d66637-a7e1-48f6-b242-fa2217f691b6", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:ba17dda5-76b0-462a-9941-6b8064a0b640", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:a462bfe5-5071-4a30-950d-54c1f083e904", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - }, { - "item" : [ { - "itemClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:d7535b59-cda6-4e4f-bd4d-c4702d5dcef5", - "itemVersion" : "01", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:cb36d626-0fc9-4b0f-b322-de454d6bb41d", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" } ] } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "partTypeInformation" : { - "ownerPartId" : "8840838-04", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "HV MODUL", - "partClassification" : [ { - "value" : "HV MODUL", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "HV MODUL" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", + "sites" : [ { + "functionValidUntil" : "2028-04-23T15:09:08.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2018-03-25T16:47:58.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "863971", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:centigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "2980", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-513465712429541111831569", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "partTypeInformation" : { + "manufacturerPartId" : "9C147E8-67", + "classification" : "product", + "nameAtManufacturer" : "OEM A Closure" }, - "cO2FootprintTotal" : 124 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { - "serialization" : { - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, + "parentCatenaXId" : "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", "quantity" : { - "unit" : "unit:piece", - "value" : 1 - }, - "registration" : { - "customerPartId" : "8840838-04", - "manufacturerPartId" : "8840838-04" - } - }, - "typology" : { - "name" : "Transmission Type 8HP60", - "description" : "This is the product description of a module", - "class" : { - "code" : "27-05-02-01", - "definition" : "Traction battery, starter battery" + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "nameAtManufacturer" : "HV MODUL", - "nameAtCustomer" : "HV MODUL" - }, - "metadata" : { - "validityDate" : "2000-01-01", - "economicOperator" : { - "id" : "BPNL00000003AYRE", - "eori" : "DE012345678901" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", + "sites" : [ { + "functionValidUntil" : "2026-06-30T11:51:18.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2017-12-07T15:54:06.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "13392", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 + }, + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 20 + } }, - "issueDate" : "2023-04-14", - "version" : 1.1, - "status" : "Invalid" - }, - "characteristics" : { - "physicalDimensionsProperty" : { - "diameter" : 229.6336, - "width" : 229.6, - "length" : 471.1, - "weight" : 14.1, - "height" : 99.1 + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "lifespan" : { - "unit" : "unit:year", - "value" : 16 - } - }, - "commercial" : { - "placedOnMarket" : "2022-05-22", - "warranty" : 60 - }, - "identification" : { - "localIdentifiers" : [ { - "value" : "NO-513465712429541111831569", - "key" : "PartInstanceID" - } ], - "gtin" : " 30556220", - "additionalCode" : [ { - "name" : "TARIC", - "value" : "162038866" - } ] - }, - "sources" : { - "optional" : [ { - "document" : { - "header" : "Responsible sourcing report 2023", - "category" : "Sustainability", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "name" : "sustainability" + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "mandatory" : { - "safetyTransportation" : { - "header" : "Shipping guidelines", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernDisassembly" : { - "header" : "Dismantling procedure of HVB Module HV MODUL", - "category" : "Compliance", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "substanceOfConcernInstruction" : { - "header" : "Laboratory test results HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" - }, - "safetyPackaging" : { - "header" : "Packaging instruction for HVB Module HV MODUL", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" + "materialNameStandardized" : { + "referencedStandard" : "GB", + "referencedStandardID" : "1262", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 }, - "declarationOfConformity" : [ { - "document" : { - "header" : "Sustainability Document Material XY", - "category" : "Safety", - "type" : "catena-x.net/testdata/productpass/SN12345678", - "content" : "catena-x.net/testdata/productpass/SN12345678" + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } }, - "name" : "other" - } ] - } - }, - "handling" : { - "maintenanceHistory" : [ { - "date" : "2023-04-24", - "activity" : "Inspection", - "description" : "Battery test", - "title" : "Maintenance Service" - } ], - "reusablePackaging" : false, - "spareParts" : [ { - "partId" : "Aluminum Housing 952/C", - "name" : "Aluminum Housing", - "producerId" : "BPNL1234567890ZZ" - } ], - "substanceOfConcern" : [ { - "unit" : "unit:percent", - "name" : "Lead", - "location" : "HvbCell", - "concentration" : { - "left" : [ 4.767 ] - }, - "id" : "IW4785" - } ] - }, - "additionalData" : [ { - "data" : "23", - "children" : [ { - "data" : "", - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } } - } ], - "description" : "", - "label" : "", - "type" : { - "dataType" : "xsd:string", - "typeUnit" : "" - } - } ], - "sustainability" : { - "material" : [ { - "recycled" : true, - "renewable" : false, - "percentage" : 5, - "name" : "Nickel" - } ], - "critical" : [ "Cobalt" ], - "carbonFootprint" : { - "crossSectoralStandard" : "GHG Protocol Product standard", - "productOrSectorSpecificRules" : [ { - "extWBCSD_otherOperatorName" : "NSF", - "extWBCSD_operator" : "PEF", - "productOrSectorSpecificRules" : [ { - "ruleName" : "urn:tfs-initiative.com:PCR:The Product Carbon Footprint Guideline for the Chemical Industry:version:v2.0" - } ] - } ], - "carbonContentTotal" : 106 - }, - "state" : "first life" - }, - "operation" : { - "importer" : "BPNL00000003AYRE", - "manufacturer" : { - "facilityId" : "BPNL00000003B3NX", - "manufacturerId" : "BPNL00000003AYRE" } - } - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "module" - } ], - "productType" : "module" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e3af1368-4d8a-4093-a4c6-b849fc6e1e67", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "partTypeInformation" : { + "manufacturerPartId" : "88878587-67", + "classification" : "product", + "nameAtManufacturer" : "TraceX B Door Front Right" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-21", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-16", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1" } ], - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "883160", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "sites" : [ { + "functionValidUntil" : "2032-11-30T20:57:28.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2017-01-14T10:40:10.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "990518", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 14 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 16 + "percentageOfMaterialWeight" : 14 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "5.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:gram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, @@ -182355,8 +179375,8 @@ "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "DIN", - "referencedStandardID" : "2652", + "referencedStandard" : "ASME", + "referencedStandardID" : "5183", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -182365,24 +179385,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : true, + "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 13 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -182394,417 +179414,200 @@ } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-882472948282380332973098", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "05" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "manufacturerId" : "BPNL00000003AYRE", + } ] + }, { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:0ad6dd3f-c673-40b5-a37e-72c399af9b08", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "05", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } + "manufacturerPartId" : "6760255-12", + "classification" : "product", + "nameAtManufacturer" : "TRACEX A Door-Key" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", + "sites" : [ { + "functionValidUntil" : "2025-02-05T21:31:27.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2014-06-17T22:00:03.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "10835", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 11 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 15 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "1.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "3209", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-882472948282380332973098", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:e743ec42-634b-41de-ae68-adf360f26e62", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "partTypeInformation" : { + "manufacturerPartId" : "1D147E8-90", + "classification" : "product", + "nameAtManufacturer" : "OEM C Key fund" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-08-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-21", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4" } ], - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "278409", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", + "sites" : [ { + "functionValidUntil" : "2027-02-21T14:43:07.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2020-05-27T01:03:26.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "653046", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 11 }, - "bioBasedClass" : "gen2", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 20 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:centigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Redcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "9260", + "referencedStandard" : "EN", + "referencedStandardID" : "2502", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -182813,10 +179616,10 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, @@ -182826,11 +179629,11 @@ "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } }, "preConsumer" : { @@ -182842,417 +179645,327 @@ } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-377536511860412570066760", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "03" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "manufacturerId" : "BPNL00000003AYRE", + } ] + }, { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:da3d43ee-d2ac-4797-ba8f-fa65b29aa40e", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CNKC", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } + "manufacturerPartId" : "48878587-88", + "classification" : "product", + "nameAtManufacturer" : "OEM A Car Body" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 - }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "sites" : [ { + "functionValidUntil" : "2025-10-09T22:37:59.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2020-05-03T10:51:28.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "837438", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen3", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 23 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "IS", + "referencedStandardID" : "4531", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 10 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-377536511860412570066760", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" + } + } ] + } ] + }, { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "partTypeInformation" : { + "manufacturerPartId" : "5760244-23", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Doors" }, - "cO2FootprintTotal" : 124 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "productType" : "cell" + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18" } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:db58502f-bda6-4c54-8e64-11db726462b4", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", + "sites" : [ { + "functionValidUntil" : "2030-12-16T04:52:53.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2019-08-29T08:31:58.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "809053", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 19 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "6521", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : true, + "chemicalRecycling" : { + "isMassBalanced" : false, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } + } + } + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CSGV", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "Tier C Leather" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2020-11-02", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-02-27", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b" } ], - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "295968", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "sites" : [ { + "functionValidUntil" : "2027-08-22T22:07:38.000Z", + "catenaXsiteId" : "BPNS00000003CSGV", + "function" : "production", + "functionValidFrom" : "2018-05-14T11:22:56.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "984441", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 22 + "percentageOfMaterialWeight" : 21 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "4.2", + "materialClass" : "1.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decagram", + "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Greencert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { "referencedStandard" : "ISO", - "referencedStandardID" : "2028", + "referencedStandardID" : "8760", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -183264,443 +179977,443 @@ "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : false, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 10 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 11 } } } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" + } ] + }, { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003B2OM", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "NO-701547472602799656630142", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ] + } ], + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX A Heating" }, - "itemVersion" : "02" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "sites" : [ { + "functionValidUntil" : "2025-12-19T18:48:23.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2014-11-09T15:22:33.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "698914", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 10 }, - "ownerItemId" : "urn:uuid:75bf40e6-8e1b-43a1-9723-bccc9e145a5b", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 21 + } + }, + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "3.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 + }, + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "materialNameStandardized" : { + "referencedStandard" : "EN", + "referencedStandardID" : "6680", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 + }, + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } + }, + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + } + } + } } ] + } ] + }, { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "childItems" : [ ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", + "bpnl" : "BPNL00000003CML1", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "02", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX A Power Conduction" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 + "parentCatenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "sites" : [ { + "functionValidUntil" : "2024-09-03T01:55:49.000Z", + "catenaXsiteId" : "BPNS0000000008ZZ", + "function" : "production", + "functionValidFrom" : "2013-11-08T23:38:14.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "835557", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 14 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "2.1", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decagram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Redcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "ISO", + "referencedStandardID" : "3560", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-701547472602799656630142", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:41bd5849-0413-4987-96c1-c4863e181222", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "childItems" : [ ] + } ], + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Overheat Protection" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-07-12", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 }, { - "currentStateOfHealthTimestamp" : "2024-03-03", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:b7289d8e-3f09-4052-80a7-436ad6a0486b", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8" } ], - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "124613", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "sites" : [ { + "functionValidUntil" : "2030-11-25T10:12:06.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2014-12-31T23:26:03.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "775890", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 20 + "percentageOfMaterialWeight" : 16 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", "materialClass" : "4.2", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:gram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Bluecert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ASME", - "referencedStandardID" : "5294", + "referencedStandard" : "JIS", + "referencedStandardID" : "2009", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -183709,24 +180422,24 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { - "isMassBalanced" : false, - "percentageOfMaterialWeight" : 11 + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 12 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 12 } }, "preConsumer" : { @@ -183738,417 +180451,340 @@ } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" + } ] + }, { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "NO-198122193606342526648807", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "03" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:77247910-191b-4599-bc1f-b1dfb6234afd", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" - } ] - } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "03", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "businessPartner" : "BPNL00000003CML1", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a87237ab-7597-4a75-8e4b-3ed7bff22dfa", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } - }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" - } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" - } + "catenaXId" : "urn:uuid:920b628f-c418-4e96-a19f-289fce7851d8", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-198122193606342526648807", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:c5078f06-6db6-42d2-9456-28e42b35f238", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], + "businessPartner" : "BPNL50096894aNXY", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] - } ] - }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "childItems" : [ { - "catenaXId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", + } ], + "bpnl" : "BPNL00000003B2OM", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TIer A Massage Pilot" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", "quantity" : { "quantityNumber" : 2.5, "measurementUnit" : "unit:litre" }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ] - } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" - }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2023-05-26", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-02-18", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667" } ], - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "310629", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:589a103f-8c83-48ef-8d2c-d7ee8e93d667", + "sites" : [ { + "functionValidUntil" : "2026-11-19T21:40:46.000Z", + "catenaXsiteId" : "BPNS00000003B2OM", + "function" : "production", + "functionValidFrom" : "2020-07-20T06:09:48.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "827153", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { - "percentageOfMaterialWeight" : 11 + "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen3", + "bioBasedClass" : "gen2", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 17 + "percentageOfMaterialWeight" : 12 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "2.1", + "materialClass" : "1.1", "unitOfMeasure" : { "unitOfMeasureKey" : "unit:decigram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Yellowcert", + "certificateName" : "Bluecert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "ISO", - "referencedStandardID" : "7292", + "referencedStandard" : "DIN EN", + "referencedStandardID" : "2815", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -184159,444 +180795,269 @@ "postConsumer" : { "isPreviousIndustryAutomotive" : false, "chemicalRecycling" : { - "isMassBalanced" : false, + "isMassBalanced" : true, "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 10 + "percentageOfMaterialWeight" : 14 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 14 } } } } } ] + } ] + }, { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "childItems" : [ ] } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" - }, { - "value" : "NO-861416653605285640927773", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", + "bpnl" : "BPNL00000003AYRE", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "OEM A Cpu Chips" }, - "itemVersion" : "04" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:765bd7f0-d494-41d8-8641-1380055afe8a", - "itemVersion" : "04", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "left", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:27c36e82-32f1-47db-8a33-a31ec208d5f3", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "04", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } - } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 + "parentCatenaXId" : "urn:uuid:089aafa6-fde3-4f3a-a56c-7d44127f0b65", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "sites" : [ { + "functionValidUntil" : "2024-03-24T21:58:55.000Z", + "catenaXsiteId" : "BPNS000004711DMY", + "function" : "production", + "functionValidFrom" : "2019-05-23T12:57:23.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "721683", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen1", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 18 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:decigram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Greencert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "JIS", + "referencedStandardID" : "4782", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 14 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 11 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 10 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-861416653605285640927773", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:73fbfe6d-648c-4895-a2f2-b8842b772e36", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] }, { - "urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingleLevelBomAsBuilt" : [ { - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", "childItems" : [ { - "catenaXId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" + "unit" : "unit:piece", + "value" : 1 }, - "hasAlternatives" : false, - "businessPartner" : "BPNL00000003B0Q0", + "businessPartner" : "BPNL00000003AZQP", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CSGV", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + }, { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003CML1", "createdOn" : "2022-02-03T14:48:54.709Z", "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription" : [ { - "minimalStateOfHealth" : { - "minimalStateOfHealthValue" : 90, - "specificatorId" : "OEM", - "minimalStateOfHealthPhase" : "as specified by OEM" + "bpnl" : "BPNL00000003CNKC", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "partTypeInformation" : { + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "TRACEX B Massage" }, - "currentStateOfHealth" : [ { - "currentStateOfHealthTimestamp" : "2021-07-17", - "currentStateOfHealthPhase" : "as specified by OEM", - "currentStateOfHealthValue" : 105 - }, { - "currentStateOfHealthTimestamp" : "2024-03-05", - "currentStateOfHealthPhase" : "as recieved by dismantling", - "currentStateOfHealthValue" : 95 + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] + } ], + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" + }, + "parentCatenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" + }, + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ], - "performanceIndicator" : { - "electrictiyCapacityMax" : 3117.732935335289, - "electrictiyCapacityMin" : 26212.182226034147 - }, - "type" : "HVB" + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf" } ], - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "bpnl" : "BPNL00000003AYRE", - "urn:samm:io.catenax.secondary_material_content_verifiable:1.0.0#SecondaryMaterialContentVerifiable" : [ { - "orderNumber" : "938186", + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:0dbafb14-73fc-4899-a3d9-68bc79529bdf", + "sites" : [ { + "functionValidUntil" : "2026-07-20T04:41:52.000Z", + "catenaXsiteId" : "BPNS00000008BDFH", + "function" : "production", + "functionValidFrom" : "2019-12-23T20:38:53.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "213452", "secondaryMaterialContent" : [ { "bioBased" : { "primaryBioBased" : { "percentageOfMaterialWeight" : 13 }, - "bioBasedClass" : "gen1", + "bioBasedClass" : "gen3", "secondaryBioBased" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 18 } }, "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", - "materialClass" : "1.1", + "materialClass" : "2.1", "unitOfMeasure" : { - "unitOfMeasureKey" : "unit:decigram", + "unitOfMeasureKey" : "unit:decagram", "grossMaterialInputMass" : 3500, "materialNetMass" : 3000 }, "certificate" : [ { - "certificateName" : "Redcert", + "certificateName" : "Yellowcert", "certificateLink" : "telnet://192.0.2.16:80/" } ], "materialNameStandardized" : { - "referencedStandard" : "GB", - "referencedStandardID" : "6877", + "referencedStandard" : "ASME", + "referencedStandardID" : "7632", "materialNameStandardizedValue" : "PP-TD10" }, "inorganic" : { @@ -184605,14 +181066,14 @@ }, "secondaryInorganic" : { "postConsumer" : { - "isPreviousIndustryAutomotive" : false, + "isPreviousIndustryAutomotive" : true, "chemicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 13 + "percentageOfMaterialWeight" : 10 }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 11 } }, "postConsumerAutomotive" : { @@ -184622,7457 +181083,169 @@ }, "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 12 + "percentageOfMaterialWeight" : 13 } }, "preConsumer" : { "mechanicalRecycling" : { "isMassBalanced" : true, - "percentageOfMaterialWeight" : 14 + "percentageOfMaterialWeight" : 11 } } } } } ] - } ], - "urn:samm:io.catenax.serial_part:3.0.0#SerialPart" : [ { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" + } ] + }, { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "childItems" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL00000003AYRE", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "8840838-04", - "key" : "manufacturerPartId" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" }, { - "value" : "NO-549783520636760057701443", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU", - "sites" : [ { - "catenaXsiteId" : "BPNS000004711DMY", - "function" : "production" - } ] - }, - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "partTypeInformation" : { - "manufacturerPartId" : "8840374-09", - "customerPartId" : "8840374-09", - "partClassification" : [ { - "classificationDescription" : "Standard data element types with associated classification scheme for electric components.", - "classificationStandard" : "IEC", - "classificationID" : "61360- 2:2012 " - } ], - "nameAtManufacturer" : "ZB ZELLE", - "nameAtCustomer" : "ZB ZELLE" - }, - "itemVersion" : "01" - } ], - "urn:samm:io.catenax.single_level_bom_as_specified:2.0.0#SingleLevelBomAsSpecified" : [ { - "assetId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "manufacturerId" : "BPNL00000003AYRE", - "childItems" : [ { - "item" : [ { - "itemClassification" : [ { - "value" : "Mirror left", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "itemQuantity" : { - "quantityNumber" : 2, - "measurementUnit" : "unit:litre" - }, - "ownerItemId" : "urn:uuid:a9c4698c-1568-4fad-a44c-356a30e8762c", - "itemVersion" : "05", - "itemDescription" : "The steering wheel is nice and round", - "createdOn" : "2022-02-03T14:48:54.709Z", - "itemPositioning" : "right", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "childassetId" : "urn:uuid:6ad55f6a-8654-43f2-98c1-8b2642b4c860", - "childItemCategory" : "e.g. vehicle, winter wheels, bicycle rack" + "validityPeriod" : { + "validFrom" : "2023-03-21T08:17:29.187+01:00", + "validTo" : "2024-07-01T16:10:00.000+01:00" + }, + "catenaXId" : "urn:uuid:e7622f69-d4ca-49c9-8bb9-95a135e418e4", + "quantity" : { + "unit" : "unit:piece", + "value" : 1 + }, + "businessPartner" : "BPNL50096894aNXY", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" } ] } ], - "urn:samm:io.catenax.physical_dimension:1.0.0#PhysicalDimension" : [ { - "physicalDimensionsProperty" : { - "diameter" : 380, - "width" : 590, - "length" : 810, - "weight" : 85, - "height" : 610 - } - } ], - "urn:samm:io.catenax.part_as_specified:2.0.0#PartAsSpecified" : [ { - "validityPeriod" : { - "validFrom" : "2023-02-10T07:17:52.396Z", - "validTo" : "2023-02-10T07:17:52.396Z" - }, - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", + "bpnl" : "BPNL00000003AZQP", + "urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", "partTypeInformation" : { - "ownerPartId" : "8840374-09", - "partVersion" : "01", - "itemCategory" : "component", - "partDescription" : "ZB ZELLE", - "partClassification" : [ { - "value" : "ZB ZELLE", - "key" : "BPNL00000003AYRE:PartFamily" - } ], - "nameAtOwner" : "ZB ZELLE" - } + "manufacturerPartId" : "9760254-64", + "classification" : "product", + "nameAtManufacturer" : "OEM C Seat Pilot" + }, + "partSitesInformationAsPlanned" : [ { + "functionValidUntil" : "2023-12-11T06:14:55.183Z", + "catenaXsiteId" : "BPNS1234567890ZZ", + "function" : "production", + "functionValidFrom" : "2023-12-11T06:14:55.181Z" + } ] } ], - "urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" : [ { - "electrochemicalProperties" : { - "ratedCapacity" : 210, - "batteryEnergy" : { - "energyRoundtripEfficiencyChange" : 67, - "maximumAllowedBatteryEnergy" : 90000, - "energyRoundtripEfficiency" : 56 - }, - "ratioMaximumAllowedBatteryPowerAndMaximumAllowedBatteryEnergy" : 0.611, - "batteryVoltage" : { - "nominalVoltage" : 4.3, - "maxVoltage" : 6, - "minVoltage" : 2.04 - }, - "internalResistance" : { - "cellInternalResistance" : 45, - "packInternalResistance" : 67, - "packInternalResistanceIncrease" : 23 + "urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned" : [ { + "parentParts" : [ { + "validityPeriod" : { + "validFrom" : "2023-03-21T08:47:14.438+01:00", + "validTo" : "2024-08-02T09:00:00.000+01:00" }, - "capacityThresholdExhaustion" : 23, - "batteryPower" : { - "originalPowerCapability" : -1.7976931348623157E308, - "powerFade" : 23, - "originalPowerCapabilityLimits" : -1.7976931348623157E308, - "maximumAllowedBatteryPower" : -1.7976931348623157E308, - "powerCapabilityAt20Charge" : -1.7976931348623157E308, - "powerCapabilityAt80Charge" : -1.7976931348623157E308 + "parentCatenaXId" : "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", + "quantity" : { + "quantityNumber" : 2.5, + "measurementUnit" : "unit:litre" }, - "capacityFade" : 34 - }, - "document" : { - "responsibleSourcing" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "LlN" - } ], - "packagingInstructions" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "eOMtThyhVNLWUZNRcBaQKxI" - } ], - "transportationInstructions" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "yedUsFwdkelQbxeTeQOvaScfqIOOmaa" - } ], - "vehicleDismantlingProcedure" : [ { - "fileLocation" : "http://www.ietf.org/rfc/rfc2396.txt", - "title" : "JxkyvRnL" - } ], - "testReportsResults" : [ { - "fileLocation" : "telnet://192.0.2.16:80/", - "title" : "UMaAIKKIkknjWEXJUfPxxQHeWKEJ" - } ], - "batteryDismantlingProcedure" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "RYtGKbgicZaHCBRQDSx" - } ], - "safetyMeasures" : [ { - "fileLocation" : "ftp://ftp.is.co.za/rfc/rfc1808.txt", - "title" : "VLhpfQGTMDYpsBZxvfBoeygjb" - } ], - "declarationOfConformity" : [ { - "fileLocation" : "http://www.wikipedia.org", - "title" : "dpHYZGhtgdntugzvvKAXLhM" - } ] - }, - "datePlacedOnMarket" : "2023-03-14", - "cellChemistry" : { - "anodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "anodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeCompositionOther" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "electrolyteComposition" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "recyclateContentActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "cathodeActiveMaterials" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ] - }, - "physicalDimensions" : { - "diameter" : 3, - "length" : 20000, - "width" : 1000, - "weight" : 1007, - "height" : 1 - }, - "temperatureRangeIdleState" : { - "temperatureRangeIdleStateUpperLimit" : 67, - "temperatureRangeIdleStateLowerLimit" : 67 - }, - "batteryCycleLife" : { - "cycleLifeTestCRate" : 45, - "expectedLifetime" : 456, - "cycleLifeTestDepthOfDischarge" : 23 - }, - "manufacturer" : { - "address" : { - "country" : { - "shortName" : "XB-1M" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } ], + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e" + } ], + "urn:samm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned" : [ { + "catenaXId" : "urn:uuid:4f73c61f-c956-4144-8e55-b53b6b61220e", + "sites" : [ { + "functionValidUntil" : "2029-11-11T19:43:53.000Z", + "catenaXsiteId" : "BPNS000001111DMY", + "function" : "production", + "functionValidFrom" : "2017-09-12T19:59:16.000Z" + } ] + } ], + "urn:samm:io.catenax.secondary_material_content_calculated:1.0.0#SecondaryMaterialContentCalculated" : [ { + "orderNumber" : "742897", + "secondaryMaterialContent" : [ { + "bioBased" : { + "primaryBioBased" : { + "percentageOfMaterialWeight" : 12 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "bioBasedClass" : "gen2", + "secondaryBioBased" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "additionalInformation" : "eOMtThyhVNLWUZNRcBaQKxI", + "materialClass" : "4.2", + "unitOfMeasure" : { + "unitOfMeasureKey" : "unit:gram", + "grossMaterialInputMass" : 3500, + "materialNetMass" : 3000 }, - "name" : "Company A" - }, - "warrantyPeriod" : 60, - "composition" : { - "components" : { - "componentsSupplier" : [ { - "componentsSupplierName" : "XY Corporation", - "address" : { - "country" : { - "shortName" : "" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" + "certificate" : [ { + "certificateName" : "Yellowcert", + "certificateLink" : "telnet://192.0.2.16:80/" + } ], + "materialNameStandardized" : { + "referencedStandard" : "DIN EN", + "referencedStandardID" : "7229", + "materialNameStandardizedValue" : "PP-TD10" + }, + "inorganic" : { + "primaryInorganic" : { + "percentageOfMaterialWeight" : 12 + }, + "secondaryInorganic" : { + "postConsumer" : { + "isPreviousIndustryAutomotive" : false, + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } + }, + "postConsumerAutomotive" : { + "chemicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 12 } }, - "contact" : { - "website" : "https://www.samsung.com", - "phoneNumber" : "+49 89 1234567890", - "faxNumber" : "+49 89 0987654321", - "email" : "test.mail@example.com" + "preConsumer" : { + "mechanicalRecycling" : { + "isMassBalanced" : true, + "percentageOfMaterialWeight" : 13 + } } - } ], - "componentsPartNumber" : [ "Case xxxxxxx/xx; Controller xxxxxxx/xx" ] - }, - "compositionOfBattery" : [ { - "materialName" : "Graphite", - "materialWeight" : 2.5, - "materialPercentageMassFraction" : 19 - } ], - "criticalRawMaterials" : "gNfZBdyFGRajVfJNonEnOinZj" - }, - "manufacturing" : { - "address" : { - "country" : { - "shortName" : "RG-8" - }, - "premise" : { - "technicalKey" : "BUILDING", - "value" : "Werk 1" - }, - "postalDeliveryPoint" : { - "technicalKey" : "INTERURBAN_DELIVERY_POINT", - "value" : "Tor 1" - }, - "locality" : { - "technicalKey" : "BLOCK", - "value" : "Mannheim" - }, - "postCode" : { - "technicalKey" : "CEDEX", - "value" : "68161-12" - }, - "thoroughfare" : { - "number" : "45", - "technicalKey" : "STREET", - "value" : "Bernstraße" } - }, - "dateOfManufacturing" : "2023-03-07" - }, - "batteryIdentification" : { - "batteryIDDMCCode" : "NO-549783520636760057701443", - "batteryModel" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State", - "batteryType" : "LFP, Natrium, Li-Ion, NMC, NCA, Solid-State" - }, - "stateOfBattery" : { - "stateOfCharge" : 23, - "stateOfHealth" : 12, - "statusBattery" : "first life/ waste/ repaired/ repurposed/ recycled" - }, - "cO2FootprintTotal" : 124 - } ], - "urn:samm:io.catenax.traction_battery_code:1.0.0#TractionBatteryCode" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "subcomponents" : [ { - "tractionBatteryCode" : "X12MCPM27KLPCLX2M2382320", - "productType" : "cell" - } ], - "productType" : "cell" - } ], - "urn:samm:io.catenax.single_level_usage_as_built:2.0.0#SingleLevelUsageAsBuilt" : [ { - "catenaXId" : "urn:uuid:aafdd873-41a5-40d6-8edb-3a93cd7f83dd", - "customers" : [ { - "businessPartner" : "BPNL00000003AYRE", - "parentItems" : [ { - "catenaXId" : "urn:uuid:e26e1a74-8662-4a82-ba2b-9507e912476e", - "quantity" : { - "quantityNumber" : 2.5, - "measurementUnit" : "unit:litre" - }, - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" - } ], - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z" + } } ] } ] - } - , - { - "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "bpnl": "BPNL00000003AYRE", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "sites": [ - { - "functionValidUntil": "2025-04-04T04:14:11.000Z", - "catenaXsiteId": "BPNS000004711DMY", - "function": "production", - "functionValidFrom": "2018-03-24T13:38:32.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "vehicle_model_a.asm", - "description": [ - { - "language": "en", - "text": "Vehicle Model A" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e" - ] - }, - "id": "urn:uuid:155b033e-85b2-4dbc-9d04-f992600c42c3" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2017-01-03T07:45:04.000Z", - "validTo": "2029-11-15T11:57:45.000Z" - }, - "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "partTypeInformation": { - "manufacturerPartId": "ZX-55", - "classification": "product", - "nameAtManufacturer": "Vehicle Model A" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AYRE", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B2OM", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B5MJ", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ] - }, - { - "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "bpnl": "BPNL00000003AYRE", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "sites": [ - { - "functionValidUntil": "2027-05-23T09:16:30.000Z", - "catenaXsiteId": "BPNS000004711DMY", - "function": "production", - "functionValidFrom": "2013-11-17T23:59:54.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "oem_a_high_voltage_battery.asm", - "description": [ - { - "language": "en", - "text": "OEM A High Voltage Battery" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" - ] - }, - "id": "urn:uuid:7e620f0f-4218-4b67-a22c-6103efe556fb" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2015-05-18T23:10:44.000Z", - "validTo": "2025-10-23T14:46:01.000Z" - }, - "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "partTypeInformation": { - "manufacturerPartId": "38049661-08", - "classification": "product", - "nameAtManufacturer": "OEM A High Voltage Battery" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", - "quantity": { - "quantityNumber": 6, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AYRE", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c" - } - ] - }, - { - "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", - "bpnl": "BPNL00000003AYRE", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", - "sites": [ - { - "functionValidUntil": "2031-11-21T03:24:27.000Z", - "catenaXsiteId": "BPNS000004711DMY", - "function": "production", - "functionValidFrom": "2020-06-07T07:30:47.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "hv_modul.asm", - "description": [ - { - "language": "en", - "text": "HV Modul" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" - ] - }, - "id": "urn:uuid:b95ce45c-1377-4285-8917-5f14795cf1ac" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2018-01-25T08:42:58.000Z", - "validTo": "2029-02-10T03:24:30.000Z" - }, - "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", - "partTypeInformation": { - "manufacturerPartId": "8840838-04", - "classification": "product", - "nameAtManufacturer": "HV Modul" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", - "quantity": { - "quantityNumber": 10, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AYRE", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", - "quantity": { - "quantityNumber": 0.11, - "measurementUnit": "unit:kilogram" - }, - "businessPartner": "BPNL00000003AXS3", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97" - } - ] - }, - { - "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", - "bpnl": "BPNL00000003AYRE", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", - "sites": [ - { - "functionValidUntil": "2028-04-27T13:34:20.000Z", - "catenaXsiteId": "BPNS000004711DMY", - "function": "production", - "functionValidFrom": "2017-05-03T09:10:04.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "zb_zelle.asm", - "description": [ - { - "language": "en", - "text": "ZB ZELLE" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9" - ] - }, - "id": "urn:uuid:5956fb59-4154-4282-8406-4e6480879e57" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2016-04-28T20:00:55.000Z", - "validTo": "2027-04-27T00:59:41.000Z" - }, - "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", - "partTypeInformation": { - "manufacturerPartId": "8840374-09", - "classification": "product", - "nameAtManufacturer": "ZB ZELLE" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B0Q0", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9" - } - ] - }, - { - "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", - "bpnl": "BPNL00000003B0Q0", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", - "sites": [ - { - "functionValidUntil": "2025-03-05T00:33:55.000Z", - "catenaXsiteId": "BPNS00000003B0Q0", - "function": "production", - "functionValidFrom": "2019-09-10T14:41:50.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "n_tier_a_cathodematerial.asm", - "description": [ - { - "language": "en", - "text": "N Tier A CathodeMaterial" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699" - ] - }, - "id": "urn:uuid:f80167f2-78e1-4755-a892-3f2dffba317d" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2013-11-24T00:27:33.000Z", - "validTo": "2025-08-16T09:18:35.000Z" - }, - "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", - "partTypeInformation": { - "manufacturerPartId": "7A047C7-01", - "classification": "product", - "nameAtManufacturer": "N Tier A CathodeMaterial" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:c7a2b803-f8fe-4b79-b6fc-967ce847c9a9", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:4f7b1cf2-a598-4027-bc78-63f6d8e55699" - } - ] - }, - { - "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", - "bpnl": "BPNL00000003AXS3", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", - "sites": [ - { - "functionValidUntil": "2031-10-20T22:34:48.000Z", - "catenaXsiteId": "BPNS00000003AXS3", - "function": "production", - "functionValidFrom": "2013-12-05T14:02:28.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "sub_tier_b_sealant.asm", - "description": [ - { - "language": "en", - "text": "Sub Tier B Sealant" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323" - ] - }, - "id": "urn:uuid:691f8434-9bcc-4d1e-90c8-c9d23ebc9fd6" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2017-09-12T21:34:41.000Z", - "validTo": "2030-06-04T20:52:15.000Z" - }, - "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", - "partTypeInformation": { - "manufacturerPartId": "9A047C7-01", - "classification": "product", - "nameAtManufacturer": "Sub Tier B Sealant" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:e5c96ab5-896a-482c-8761-efd74777ca97", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:15d2fcc8-6439-4d1e-904b-e62b4d3bf323" - } - ] - }, - { - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "bpnl": "BPNL00000003B2OM", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "sites": [ - { - "functionValidUntil": "2031-10-27T21:24:04.000Z", - "catenaXsiteId": "BPNS00000003B2OM", - "function": "production", - "functionValidFrom": "2016-01-29T21:44:37.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tier_a_gearbox.asm", - "description": [ - { - "language": "en", - "text": "Tier A Gearbox" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" - ] - }, - "id": "urn:uuid:9662b9a3-3fe8-4afc-8d26-f47b48e193df" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tier_a_gearbox.asm", - "description": [ - { - "language": "en", - "text": "Tier A Gearbox" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" - ] - }, - "id": "urn:uuid:98fc8794-eafe-475e-bd05-0fb275739cb2" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2017-07-03T05:23:01.000Z", - "validTo": "2032-09-25T10:26:27.000Z" - }, - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "partTypeInformation": { - "manufacturerPartId": "32494586-73", - "classification": "product", - "nameAtManufacturer": "Tier A Gearbox" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B3NX", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B0Q0", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7" - } - ] - }, - { - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "bpnl": "BPNL00000003B3NX", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "sites": [ - { - "functionValidUntil": "2031-04-16T11:07:09.000Z", - "catenaXsiteId": "BPNS00000003B3NX", - "function": "production", - "functionValidFrom": "2013-12-07T09:33:50.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "sub_tier_a_sensor.asm", - "description": [ - { - "language": "en", - "text": "Sub Tier A Sensor" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" - ] - }, - "id": "urn:uuid:e6e20f07-6fc4-459c-92df-372a5ccbc1fd" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "sub_tier_a_sensor.asm", - "description": [ - { - "language": "en", - "text": "Sub Tier A Sensor" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" - ] - }, - "id": "urn:uuid:ae6b11ac-c7eb-4197-91a7-6549ff35d7e5" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "sub_tier_a_sensor.asm", - "description": [ - { - "language": "en", - "text": "Sub Tier A Sensor" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" - ] - }, - "id": "urn:uuid:c7ffb49f-83ff-45b4-88b4-0028c96ea1d6" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "sub_tier_a_sensor.asm", - "description": [ - { - "language": "en", - "text": "Sub Tier A Sensor" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" - ] - }, - "id": "urn:uuid:95a3fcd9-ac09-49d9-a38f-5072f109dd9c" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2013-06-18T03:47:22.000Z", - "validTo": "2030-12-31T23:33:25.000Z" - }, - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "partTypeInformation": { - "manufacturerPartId": "6740244-02", - "classification": "product", - "nameAtManufacturer": "Sub Tier A Sensor" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B0Q0", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc" - } - ] - }, - { - "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", - "bpnl": "BPNL00000003B0Q0", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", - "sites": [ - { - "functionValidUntil": "2024-09-23T14:45:04.000Z", - "catenaXsiteId": "BPNS00000003B0Q0", - "function": "production", - "functionValidFrom": "2020-06-20T01:19:36.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "n_tier_a_ntier_product.asm", - "description": [ - { - "language": "en", - "text": "N Tier A NTier Product" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" - ] - }, - "id": "urn:uuid:58be412e-0024-417f-adcd-a2235435eaeb" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "n_tier_a_ntier_product.asm", - "description": [ - { - "language": "en", - "text": "N Tier A NTier Product" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" - ] - }, - "id": "urn:uuid:11dea964-4f0a-4042-bae2-3e6500111a95" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "n_tier_a_ntier_product.asm", - "description": [ - { - "language": "en", - "text": "N Tier A NTier Product" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" - ] - }, - "id": "urn:uuid:b6ac0d5b-6a41-4d52-bfbe-19009dc97579" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "n_tier_a_ntier_product.asm", - "description": [ - { - "language": "en", - "text": "N Tier A NTier Product" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" - ] - }, - "id": "urn:uuid:428443ba-c9fe-4b23-9e7b-62b8a6b67878" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2019-01-02T09:42:18.000Z", - "validTo": "2031-05-02T13:45:12.000Z" - }, - "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", - "partTypeInformation": { - "manufacturerPartId": "7A047KK-01", - "classification": "product", - "nameAtManufacturer": "N Tier A NTier Product" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:86f69643-3b90-4e34-90bf-789edcf40e7e" - } - ] - }, - { - "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", - "bpnl": "BPNL00000003B0Q0", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", - "sites": [ - { - "functionValidUntil": "2030-01-29T19:43:54.000Z", - "catenaXsiteId": "BPNS00000003B0Q0", - "function": "production", - "functionValidFrom": "2015-11-17T18:35:23.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "n_tier_a_plastics.asm", - "description": [ - { - "language": "en", - "text": "N Tier A Plastics" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" - ] - }, - "id": "urn:uuid:c4149abd-13e5-43ab-b058-e4b121d2d51e" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "n_tier_a_plastics.asm", - "description": [ - { - "language": "en", - "text": "N Tier A Plastics" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" - ] - }, - "id": "urn:uuid:0eaf02c6-97a7-473f-b479-49a1a774a4db" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2015-01-23T16:24:59.000Z", - "validTo": "2031-05-04T12:01:38.000Z" - }, - "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", - "partTypeInformation": { - "manufacturerPartId": "7A987KK-04", - "classification": "product", - "nameAtManufacturer": "N Tier A Plastics" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:4518c080-14fb-4252-b8de-4362d615868d" - } - ] - }, - { - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "bpnl": "BPNL00000003B5MJ", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "sites": [ - { - "functionValidUntil": "2028-09-29T13:56:09.000Z", - "catenaXsiteId": "BPNS00000003B5MJ", - "function": "production", - "functionValidFrom": "2017-01-30T12:55:30.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tier_b_ecu1.asm", - "description": [ - { - "language": "en", - "text": "Tier B ECU1" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" - ] - }, - "id": "urn:uuid:7759e2b6-d253-430f-bceb-be6e6fd7abee" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tier_b_ecu1.asm", - "description": [ - { - "language": "en", - "text": "Tier B ECU1" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" - ] - }, - "id": "urn:uuid:ea138238-048f-4294-8065-f31598808040" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2016-04-24T08:26:56.000Z", - "validTo": "2031-12-17T23:55:04.000Z" - }, - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "partTypeInformation": { - "manufacturerPartId": "ZX-55", - "classification": "product", - "nameAtManufacturer": "Tier B ECU1" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:bee5614f-9e46-4c98-9209-61a6f2b2a7fc", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B3NX", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "quantity": { - "quantityNumber": 0.3301, - "measurementUnit": "unit:kilogram" - }, - "businessPartner": "BPNL00000003AXS3", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:0733946c-59c6-41ae-9570-cb43a6e4c79e", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b" - } - ] - }, - { - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "bpnl": "BPNL00000003AXS3", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "sites": [ - { - "functionValidUntil": "2032-01-21T11:22:57.000Z", - "catenaXsiteId": "BPNS00000003AXS3", - "function": "production", - "functionValidFrom": "2017-05-27T13:54:13.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "sub_tier_b_glue.asm", - "description": [ - { - "language": "en", - "text": "Sub Tier B Glue" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" - ] - }, - "id": "urn:uuid:aa71a26f-5295-48af-bc7b-c585c22e3474" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "sub_tier_b_glue.asm", - "description": [ - { - "language": "en", - "text": "Sub Tier B Glue" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" - ] - }, - "id": "urn:uuid:dc047ca9-d272-4e57-8771-326302299d7c" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "sub_tier_b_glue.asm", - "description": [ - { - "language": "en", - "text": "Sub Tier B Glue" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" - ] - }, - "id": "urn:uuid:1636883e-1e9d-4999-ab03-9e1c8ad455c3" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2019-08-17T14:14:30.000Z", - "validTo": "2032-08-30T04:32:28.000Z" - }, - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "partTypeInformation": { - "manufacturerPartId": "6775244-06", - "classification": "product", - "nameAtManufacturer": "Sub Tier B Glue" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301" - } - ] - }, - { - "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "bpnl": "BPNL00000003AVTH", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "sites": [ - { - "functionValidUntil": "2030-05-16T19:21:46.000Z", - "catenaXsiteId": "BPNS000000815DMY", - "function": "production", - "functionValidFrom": "2019-10-17T03:16:09.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "vehicle_model_b.asm", - "description": [ - { - "language": "en", - "text": "Vehicle Model B" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b" - ] - }, - "id": "urn:uuid:8dc7f1c3-abd3-4c0c-87e2-e5530dd5f43f" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2016-04-09T20:41:14.000Z", - "validTo": "2023-12-09T04:46:33.000Z" - }, - "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "partTypeInformation": { - "manufacturerPartId": "FJ-87", - "classification": "product", - "nameAtManufacturer": "Vehicle Model B" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B2OM", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:07cb071f-8716-45fe-89f1-f2f77a1ce93b", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B5MJ", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL50096894aNXY", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ] - }, - { - "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "bpnl": "BPNL00000003B2OM", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "sites": [ - { - "functionValidUntil": "2028-02-14T21:42:45.000Z", - "catenaXsiteId": "BPNS00000003B2OM", - "function": "production", - "functionValidFrom": "2015-07-21T06:33:16.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tire_model_a.asm", - "description": [ - { - "language": "en", - "text": "Tire Model A" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" - ] - }, - "id": "urn:uuid:0f45fac0-6ba4-42f5-a11f-b5ed429b899e" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tire_model_a.asm", - "description": [ - { - "language": "en", - "text": "Tire Model A" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" - ] - }, - "id": "urn:uuid:85ed7f71-1e18-4352-810b-c2619d94dc05" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2019-11-02T11:14:15.000Z", - "validTo": "2024-07-17T02:07:07.000Z" - }, - "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "partTypeInformation": { - "manufacturerPartId": "123564887-01", - "classification": "product", - "nameAtManufacturer": "Tire Model A" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", - "quantity": { - "quantityNumber": 1580, - "measurementUnit": "unit:gram" - }, - "businessPartner": "BPNL50096894aNXY", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:68904173-ad59-4a77-8412-3e73fcafbd8b", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8" - } - ] - }, - { - "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", - "bpnl": "BPNL00000007OR16", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", - "sites": [ - { - "functionValidUntil": "2026-08-04T05:21:07.000Z", - "catenaXsiteId": "BPNS000000000001", - "function": "production", - "functionValidFrom": "2016-04-24T03:31:23.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "natural_rubber_product(40kg_blocks).asm", - "description": [ - { - "language": "en", - "text": "Natural Rubber Product(40KG blocks)" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" - ] - }, - "id": "urn:uuid:2c01caab-b8fd-49e1-b002-59d6b6ccb011" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "natural_rubber_product(40kg_blocks).asm", - "description": [ - { - "language": "en", - "text": "Natural Rubber Product(40KG blocks)" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" - ] - }, - "id": "urn:uuid:91a370b7-cf9d-4cc7-a63f-d928d0bd5921" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2017-04-29T01:48:37.000Z", - "validTo": "2029-08-26T00:42:55.000Z" - }, - "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", - "partTypeInformation": { - "manufacturerPartId": "9953421-03", - "classification": "product", - "nameAtManufacturer": "Natural Rubber Product(40KG blocks)" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL50096894aNXY", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d" - } - ] - }, - { - "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", - "bpnl": "BPNL00000003CSGV", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", - "sites": [ - { - "functionValidUntil": "2032-02-01T04:04:54.000Z", - "catenaXsiteId": "BPNS000000000DQB", - "function": "production", - "functionValidFrom": "2013-09-19T12:23:48.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "natural_rubber.asm", - "description": [ - { - "language": "en", - "text": "Natural Rubber" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" - ] - }, - "id": "urn:uuid:b152d1de-b56b-4b17-b3e6-04cbb3cf359d" - }, - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "natural_rubber.asm", - "description": [ - { - "language": "en", - "text": "Natural Rubber" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" - ] - }, - "id": "urn:uuid:35d9b2c3-24d1-428f-83f1-657ce87883b1" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2014-02-07T16:56:02.000Z", - "validTo": "2029-08-26T11:05:18.000Z" - }, - "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", - "partTypeInformation": { - "manufacturerPartId": "A26581-11", - "classification": "product", - "nameAtManufacturer": "Natural Rubber" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:94d086c6-0124-4f2c-86b2-1d419e47499d", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:b0926d3c-6a8f-4fc7-81a4-88c50817358a" - } - ] - }, - { - "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", - "bpnl": "BPNL00000003AZQP", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", - "sites": [ - { - "functionValidUntil": "2026-01-17T18:49:55.000Z", - "catenaXsiteId": "BPNS000001111DMY", - "function": "production", - "functionValidFrom": "2013-02-25T01:50:28.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "vehicle_model_c.asm", - "description": [ - { - "language": "en", - "text": "Vehicle Model C" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb" - ] - }, - "id": "urn:uuid:d961580e-3c2f-4d63-81cc-fea1369ec6b8" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2018-08-15T15:18:04.000Z", - "validTo": "2028-05-14T00:23:55.000Z" - }, - "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", - "partTypeInformation": { - "manufacturerPartId": "XK-34", - "classification": "product", - "nameAtManufacturer": "Vehicle Model C" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B5MJ", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:e8c48a8e-d2d7-43d9-a867-65c70c85f5b8", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL50096894aNXY", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ] - }, - { - "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", - "bpnl": "BPNL00000003B5MJ", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", - "sites": [ - { - "functionValidUntil": "2032-01-01T03:15:36.000Z", - "catenaXsiteId": "BPNS00000003B5MJ", - "function": "production", - "functionValidFrom": "2020-02-16T13:26:37.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tier_b_ecu2.asm", - "description": [ - { - "language": "en", - "text": "Tier B ECU2" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77" - ] - }, - "id": "urn:uuid:d0f3d77a-74ae-4bbd-aea7-7184a29d595f" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2018-09-16T00:07:10.000Z", - "validTo": "2032-01-10T15:26:52.000Z" - }, - "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", - "partTypeInformation": { - "manufacturerPartId": "39478586-36", - "classification": "product", - "nameAtManufacturer": "Tier B ECU2" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:3cdd2826-5df0-4c7b-b540-9eeccecb2301", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AXS3", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:65e1554e-e5cd-4560-bac1-1352582122fb", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:e3e2a4d8-58bc-4ae9-afa2-e8946fda1f77" - } - ] - }, - { - "catenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", - "bpnl": "BPNL00000003CML1", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", - "sites": [ - { - "functionValidUntil": "2030-06-16T20:40:24.000Z", - "catenaXsiteId": "BPNS0000000008ZZ", - "function": "production", - "functionValidFrom": "2019-11-03T06:03:05.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "vehicle_model_d.asm", - "description": [ - { - "language": "en", - "text": "Vehicle Model D" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c" - ] - }, - "id": "urn:uuid:ed971a88-82e1-4149-a063-0778c8dc2b59" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2016-04-06T19:14:12.000Z", - "validTo": "2025-11-21T20:38:09.000Z" - }, - "catenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", - "partTypeInformation": { - "manufacturerPartId": "ZZ-88", - "classification": "product", - "nameAtManufacturer": "Vehicle Model D" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AZQP", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CNKC", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AYRE", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ] - }, - { - "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "bpnl": "BPNL00000003AZQP", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "sites": [ - { - "functionValidUntil": "2027-10-07T13:45:14.000Z", - "catenaXsiteId": "BPNS000001111DMY", - "function": "production", - "functionValidFrom": "2013-02-12T19:48:21.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "oem_c_engine.asm", - "description": [ - { - "language": "en", - "text": "OEM C Engine" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" - ] - }, - "id": "urn:uuid:c23579db-e6a8-420f-a6cd-e9226ba19e65" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2018-08-27T07:23:22.000Z", - "validTo": "2027-12-30T10:04:41.000Z" - }, - "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "partTypeInformation": { - "manufacturerPartId": "59878587-80", - "classification": "product", - "nameAtManufacturer": "OEM C Engine" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CNKC", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003B2OM", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CSGV", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CML1", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249" - } - ] - }, - { - "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", - "bpnl": "BPNL00000003CNKC", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", - "sites": [ - { - "functionValidUntil": "2026-02-25T19:02:17.000Z", - "catenaXsiteId": "BPNS00000008BDFH", - "function": "production", - "functionValidFrom": "2015-11-23T12:41:12.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tracex_b_cylinder_head.asm", - "description": [ - { - "language": "en", - "text": "TRACEX B Cylinder Head" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" - ] - }, - "id": "urn:uuid:3fb4ce1a-4af8-487b-9248-eb8bf3ec63b7" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2014-01-15T06:00:28.000Z", - "validTo": "2027-04-29T05:32:27.000Z" - }, - "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", - "partTypeInformation": { - "manufacturerPartId": "9760254-64", - "classification": "product", - "nameAtManufacturer": "TRACEX B Cylinder Head" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AZQP", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CSGV", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CML1", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f" - } - ] - }, - { - "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", - "bpnl": "BPNL00000003AZQP", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", - "sites": [ - { - "functionValidUntil": "2028-11-03T02:13:26.000Z", - "catenaXsiteId": "BPNS000001111DMY", - "function": "production", - "functionValidFrom": "2014-09-13T07:40:34.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "oem_c_rod.asm", - "description": [ - { - "language": "en", - "text": "OEM C Rod" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f" - ] - }, - "id": "urn:uuid:d410118b-0ad3-4434-be4e-ef6f837f141c" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2013-10-03T09:35:17.000Z", - "validTo": "2025-07-09T17:51:19.000Z" - }, - "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f", - "partTypeInformation": { - "manufacturerPartId": "7B147D8-19", - "classification": "product", - "nameAtManufacturer": "OEM C Rod" - } - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:a432a8a6-af8f-4b7f-bb8a-7f287d86441f" - } - ] - }, - { - "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", - "bpnl": "BPNL00000003CSGV", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", - "sites": [ - { - "functionValidUntil": "2027-11-24T01:03:55.000Z", - "catenaXsiteId": "BPNS00000003CSGV", - "function": "production", - "functionValidFrom": "2020-11-18T01:04:50.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tier_c_crankshaft.asm", - "description": [ - { - "language": "en", - "text": "Tier C Crankshaft" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d" - ] - }, - "id": "urn:uuid:6963f76e-9cda-4550-a5aa-6e60fe0d263e" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2020-01-04T04:37:59.000Z", - "validTo": "2025-08-18T17:32:42.000Z" - }, - "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d", - "partTypeInformation": { - "manufacturerPartId": "6X247E5-99", - "classification": "product", - "nameAtManufacturer": "Tier C Crankshaft" - } - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:44805117-33b4-4293-a6f9-99316745e77d" - } - ] - }, - { - "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", - "bpnl": "BPNL00000003CML1", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", - "sites": [ - { - "functionValidUntil": "2031-08-01T05:53:19.000Z", - "catenaXsiteId": "BPNS0000000008ZZ", - "function": "production", - "functionValidFrom": "2017-11-23T23:36:58.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tracex_a_crank.asm", - "description": [ - { - "language": "en", - "text": "TraceX A Crank" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" - ] - }, - "id": "urn:uuid:3823982b-2e27-41b9-b0b2-deed131a0c7b" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2019-02-27T21:27:13.000Z", - "validTo": "2024-12-04T11:05:44.000Z" - }, - "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26", - "partTypeInformation": { - "manufacturerPartId": "2Z247F8-70", - "classification": "product", - "nameAtManufacturer": "TraceX A Crank" - } - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:a420dfc5-af2d-4bbe-a31a-1a31ebe39b9f", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:1c689a06-7f9d-42ca-9457-9104a4107d26" - } - ] - }, - { - "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", - "bpnl": "BPNL00000003B2OM", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", - "sites": [ - { - "functionValidUntil": "2029-04-15T20:04:26.000Z", - "catenaXsiteId": "BPNS00000003B2OM", - "function": "production", - "functionValidFrom": "2013-02-12T21:29:40.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tier_a_plunger.asm", - "description": [ - { - "language": "en", - "text": "Tier A Plunger" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c" - ] - }, - "id": "urn:uuid:e81ac240-d02f-40c6-b714-2727a013fc6e" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2012-12-28T09:49:52.000Z", - "validTo": "2026-06-29T00:50:06.000Z" - }, - "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", - "partTypeInformation": { - "manufacturerPartId": "6260254-43", - "classification": "product", - "nameAtManufacturer": "Tier A Plunger" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:367348b3-7a6e-4708-8283-ed6ab132b79c" - } - ] - }, - { - "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", - "bpnl": "BPNL00000003CSGV", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", - "sites": [ - { - "functionValidUntil": "2031-02-28T07:58:42.000Z", - "catenaXsiteId": "BPN", - "function": "production", - "functionValidFrom": "2016-01-19T21:23:47.000Z", - "catenaXSiteId": "BPNS00000003CSGV" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tier_c_piston_rod.asm", - "description": [ - { - "language": "en", - "text": "Tier C Piston Rod" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b" - ] - }, - "id": "urn:uuid:d2e2d6e3-0497-4a8a-92b0-57e1164be04e" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2014-02-24T21:16:29.000Z", - "validTo": "2027-11-04T22:27:44.000Z" - }, - "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", - "partTypeInformation": { - "manufacturerPartId": "5760234-23", - "classification": "product", - "nameAtManufacturer": "Tier C Piston Rod" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:f5efbf45-7d84-4442-b3b8-05cf1c5c5a0b" - } - ] - }, - { - "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", - "bpnl": "BPNL00000003CML1", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", - "sites": [ - { - "functionValidUntil": "2030-05-01T13:22:07.000Z", - "catenaXsiteId": "BPNS0000000008ZZ", - "function": "production", - "functionValidFrom": "2015-07-04T11:51:56.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tracex_a_cylinder.asm", - "description": [ - { - "language": "en", - "text": "TRACEX A Cylinder" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c" - ] - }, - "id": "urn:uuid:f1f7b01a-d9ac-47dc-b870-30a805faa8a6" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2017-01-15T05:36:21.000Z", - "validTo": "2028-08-11T09:34:04.000Z" - }, - "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", - "partTypeInformation": { - "manufacturerPartId": "8760254-76", - "classification": "product", - "nameAtManufacturer": "TRACEX A Cylinder" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CNKC", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - }, - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AYRE", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:b02700b1-c8a5-423c-83aa-0013fa0f8249", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c" - } - ] - }, - { - "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", - "bpnl": "BPNL00000003CNKC", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", - "sites": [ - { - "functionValidUntil": "2028-03-11T11:20:13.000Z", - "catenaXsiteId": "BPNS00000008BDFH", - "function": "production", - "functionValidFrom": "2020-11-29T01:27:22.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tracex_b_seal.asm", - "description": [ - { - "language": "en", - "text": "TRACEX B Seal" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023" - ] - }, - "id": "urn:uuid:75ff878c-75dc-44e1-928a-8076e28a0968" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2016-04-08T20:37:55.000Z", - "validTo": "2028-09-21T22:17:46.000Z" - }, - "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023", - "partTypeInformation": { - "manufacturerPartId": "7C147E8-87", - "classification": "product", - "nameAtManufacturer": "TRACEX B Seal" - } - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:6704474a-4aa5-4f91-acd5-dd24997c0023" - } - ] - }, - { - "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", - "bpnl": "BPNL00000003AYRE", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", - "sites": [ - { - "functionValidUntil": "2030-03-08T23:14:57.000Z", - "catenaXsiteId": "BPNS000004711DMY", - "function": "production", - "functionValidFrom": "2019-05-25T08:05:01.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "oem_a_closure.asm", - "description": [ - { - "language": "en", - "text": "OEM A Closure" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782" - ] - }, - "id": "urn:uuid:4b07da0f-9a44-4c2d-8487-680158fc030a" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2019-02-24T22:59:16.000Z", - "validTo": "2031-07-26T08:43:52.000Z" - }, - "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782", - "partTypeInformation": { - "manufacturerPartId": "9C147E8-67", - "classification": "product", - "nameAtManufacturer": "OEM A Closure" - } - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:21e1384d-ed81-48cf-a51b-e0a27a48741c", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:9aff47cb-882a-4470-a7bd-d87d87d51782" - } - ] - }, - { - "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", - "bpnl": "BPNL00000003CNKC", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", - "sites": [ - { - "functionValidUntil": "2025-04-26T02:43:47.000Z", - "catenaXsiteId": "BPNS00000008BDFH", - "function": "production", - "functionValidFrom": "2015-09-07T04:57:46.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tracex_b_door_front_right.asm", - "description": [ - { - "language": "en", - "text": "TraceX B Door Front Right" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1" - ] - }, - "id": "urn:uuid:b8e6551c-8a37-488e-811c-67125b7e6a1c" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2018-09-13T17:18:47.000Z", - "validTo": "2031-09-24T15:48:42.000Z" - }, - "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", - "partTypeInformation": { - "manufacturerPartId": "88878587-67", - "classification": "product", - "nameAtManufacturer": "TraceX B Door Front Right" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CML1", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1" - } - ] - }, - { - "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", - "bpnl": "BPNL00000003CML1", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", - "sites": [ - { - "functionValidUntil": "2028-03-05T08:18:53.000Z", - "catenaXsiteId": "BPNS0000000008ZZ", - "function": "production", - "functionValidFrom": "2017-06-04T15:47:53.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tracex_a_door-key.asm", - "description": [ - { - "language": "en", - "text": "TRACEX A Door-Key" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118" - ] - }, - "id": "urn:uuid:4d788bc9-78c2-4304-b39d-3c43100292d3" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2018-09-12T16:16:46.000Z", - "validTo": "2032-01-09T19:03:36.000Z" - }, - "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", - "partTypeInformation": { - "manufacturerPartId": "6760255-12", - "classification": "product", - "nameAtManufacturer": "TRACEX A Door-Key" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003AZQP", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:5c082f9d-7f30-42ec-88f3-1ef97d01caa1", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118" - } - ] - }, - { - "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", - "bpnl": "BPNL00000003AZQP", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", - "sites": [ - { - "functionValidUntil": "2024-08-25T14:30:09.000Z", - "catenaXsiteId": "BPNS000001111DMY", - "function": "production", - "functionValidFrom": "2014-02-17T01:07:03.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "oem_c_key_fund.asm", - "description": [ - { - "language": "en", - "text": "OEM C Key fund" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4" - ] - }, - "id": "urn:uuid:fd4cb94f-af12-4cf9-b8d1-8d51637089b4" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2014-09-18T17:01:09.000Z", - "validTo": "2027-08-10T04:03:15.000Z" - }, - "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4", - "partTypeInformation": { - "manufacturerPartId": "1D147E8-90", - "classification": "product", - "nameAtManufacturer": "OEM C Key fund" - } - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:e1dbd194-ca84-4bb9-bcfc-0a9df065f118", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:e099ab26-f5ef-466b-b9b9-0b14e5c3d8a4" - } - ] - }, - { - "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", - "bpnl": "BPNL00000003AYRE", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", - "sites": [ - { - "functionValidUntil": "2025-08-09T03:55:35.000Z", - "catenaXsiteId": "BPNS000004711DMY", - "function": "production", - "functionValidFrom": "2012-12-28T20:49:30.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "oem_a_car_body.asm", - "description": [ - { - "language": "en", - "text": "OEM A Car Body" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" - ] - }, - "id": "urn:uuid:cd3cb6f1-871f-4be1-a6ad-f8152ea28baf" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2020-03-15T07:49:00.000Z", - "validTo": "2026-07-02T06:20:58.000Z" - }, - "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", - "partTypeInformation": { - "manufacturerPartId": "48878587-88", - "classification": "product", - "nameAtManufacturer": "OEM A Car Body" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", - "childItems": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:17:29.187+01:00", - "validTo": "2024-07-01T16:10:00.000+01:00" - }, - "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", - "quantity": { - "quantityNumber": 1, - "measurementUnit": "unit:litre" - }, - "businessPartner": "BPNL00000003CNKC", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:8031a511-85d8-4568-97f3-9d155127430c", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6" - } - ] - }, - { - "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", - "bpnl": "BPNL00000003CNKC", - "urn:bamm:io.catenax.part_site_information_as_planned:1.0.0#PartSiteInformationAsPlanned": [ - { - "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", - "sites": [ - { - "functionValidUntil": "2031-03-08T00:39:03.000Z", - "catenaXsiteId": "BPNS00000008BDFH", - "function": "production", - "functionValidFrom": "2014-09-23T03:50:26.000Z" - } - ] - } - ], - "urn:bamm:io.catenax.aas:1.0.0#AAS": [ - { - "specificAssetId": [ - { - "value": "0000000251", - "key": "http://pwc.t-systems.com/datamodel/common" - }, - { - "value": "25054146@nis11c130.epdm-d.edm.dsh.de", - "key": "urn:VR:wt.part.WTPart#" - } - ], - "idShort": "tracex_b_doors.asm", - "description": [ - { - "language": "en", - "text": "TRACEX B Doors" - } - ], - "submodelDescriptors": [ - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "singleLevelBomAsPlanned", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - }, - { - "semanticId": [ - { - "keys": [ - { - "type": "GlobalReference", - "value": "urn:samm:io.catenax.serial_part:1.0.0#SerialPart" - } - ], - "type": "ExternalReference" - } - ], - "endpoints": [ - { - "interface": "SUBMODEL-3.0", - "protocolInformation": { - "subprotocolBodyEncoding": "plain", - "subprotocol": "IDS", - "securityAttributes": [ - { - "type": "NONE", - "value": "NONE", - "key": "NONE" - } - ], - "endpointProtocolVersion": [ - "1.1" - ], - "href": "https://edc.data.plane/urn%3Auuid%3A75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn%3Auuid%3A7effd7f4-6353-4401-9547-c54b420a22a0", - "subprotocolBody": "id=urn:uuid:75e98d67-e09e-4388-b2f6-ea0a0a642bfe-urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0;idsEndpoint=http://edc.control.plane/", - "endpointProtocol": "HTTP" - } - } - ], - "idShort": "partSiteInformation", - "id": "urn:uuid:7effd7f4-6353-4401-9547-c54b420a22a0" - } - ], - "globalAssetId": { - "value": [ - "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18" - ] - }, - "id": "urn:uuid:02d51ab4-0c33-4f42-b8fb-34f8ec4eae02" - } - ], - "urn:bamm:io.catenax.part_as_planned:1.0.1#PartAsPlanned": [ - { - "validityPeriod": { - "validFrom": "2018-11-12T10:57:41.000Z", - "validTo": "2032-11-28T15:35:33.000Z" - }, - "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", - "partTypeInformation": { - "manufacturerPartId": "5760244-23", - "classification": "product", - "nameAtManufacturer": "TRACEX B Doors" - } - } - ], - "urn:bamm:io.catenax.single_level_bom_as_planned:2.0.0#SingleLevelBomAsPlanned": [ - { - "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18", - "childItems": [] - } - ], - "urn:bamm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned": [ - { - "parentParts": [ - { - "validityPeriod": { - "validFrom": "2023-03-21T08:47:14.438+01:00", - "validTo": "2024-08-02T09:00:00.000+01:00" - }, - "parentCatenaXId": "urn:uuid:a732f36e-be5a-49f0-9b83-08d4b1c203c6", - "quantity": { - "quantityNumber": 2.5, - "measurementUnit": "unit:litre" - }, - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z" - } - ], - "catenaXId": "urn:uuid:72ec2897-4e20-475c-a28b-019cf5b42a18" - } - ] - } - ] + } ] } \ No newline at end of file diff --git a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreatorTest.java b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreatorTest.java index e27a923156..d031e2dc89 100644 --- a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreatorTest.java +++ b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/AssetAdministrationShellTestdataCreatorTest.java @@ -47,7 +47,7 @@ class AssetAdministrationShellTestdataCreatorTest extends LocalTestDataConfigura @Test void shouldReturnAssetAdministrationShellDescriptorWhenRequestingWithCatenaXId() { - final String catenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; + final String catenaXId = "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf"; final AssetAdministrationShellDescriptor aasDescriptor = assetAdministrationShellTestdataCreator.createDummyAssetAdministrationShellDescriptorForId( catenaXId); diff --git a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/CentralDigitalTwinRegistryServiceTest.java b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/CentralDigitalTwinRegistryServiceTest.java index 55624556b7..38439f67bc 100644 --- a/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/CentralDigitalTwinRegistryServiceTest.java +++ b/irs-registry-client/src/test/java/org/eclipse/tractusx/irs/registryclient/central/CentralDigitalTwinRegistryServiceTest.java @@ -77,7 +77,7 @@ void setUp() throws IOException { @Test void shouldReturnSubmodelEndpointsWhenRequestingWithCatenaXId() throws RegistryServiceException { - final String existingCatenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; + final String existingCatenaXId = "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf"; final Collection aasShellDescriptor = digitalTwinRegistryService.fetchShells( List.of(new DigitalTwinRegistryKey(existingCatenaXId, ""))); @@ -174,7 +174,7 @@ void shouldThrowErrorWhenCallingTestId() { @Test void shouldReturnSubmodelEndpointsWhenFilteringByAspectType() throws RegistryServiceException { - final String existingCatenaXId = "urn:uuid:92ad328c-66d4-4bdc-b2b8-f2aa355f982f"; + final String existingCatenaXId = "urn:uuid:5e1908ed-e176-4f57-9616-1415097d0fdf"; final List shellEndpoints = digitalTwinRegistryService.fetchShells( List.of(new DigitalTwinRegistryKey(existingCatenaXId, ""))) diff --git a/local/testing/api-tests/README.md b/local/testing/api-tests/README.md index 8d9cf5a460..8f733c79d5 100644 --- a/local/testing/api-tests/README.md +++ b/local/testing/api-tests/README.md @@ -26,13 +26,15 @@ export ADMIN_USER_API_KEY= export REGULAR_USER_API_KEY_ESS= export ADMIN_USER_API_KEY_ESS= ``` -6. Execute tests - - 1. Run all tests - ```console - source variable.env - py -m pytest local/testing/api-tests/irs-api-tests.tavern.yaml - ``` +* Execute command + +- Note: Execute command from irs root directory ..\item-relationship-service + +```console + source local/testing/api-tests/variable.env && python -m pytest local/testing/api-tests/irs-api-tests.tavern.yaml +``` + + 2. To run a single test: ```console diff --git a/local/testing/api-tests/irs-api-tests.tavern.yaml b/local/testing/api-tests/irs-api-tests.tavern.yaml index e077008680..c84b21c3ea 100644 --- a/local/testing/api-tests/irs-api-tests.tavern.yaml +++ b/local/testing/api-tests/irs-api-tests.tavern.yaml @@ -10,10 +10,10 @@ stages: url: "{tavern.env_vars.IRS_ESS_HOST}/ess/bpn/investigations" json: key: - globalAssetId111: urn:uuid:2c57b0e9-a653-411d-bdcd-64787e9fd3a7 - bpn111: BPNL00000003CRHK + globalAssetId111: "{tavern.env_vars.GLOBAL_ASSET_ID_ESS_AS_BUILT}" + bpn111: "{tavern.env_vars.BPN_ESS_AS_BUILT}" incidentBPNSs111: - - BPNS00000003B6LU + - "{tavern.env_vars.BPN_ESS_INCIDENT}" method: POST headers: content-type: application/json @@ -1043,7 +1043,7 @@ stages: --- -test_name: Make sure job with status RUNNING is responsed with http code 206 +test_name: Make sure job with status RUNNING is responding with http code 206 strict: - headers:off @@ -1055,12 +1055,12 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" + globalAssetId: urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d #"{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" collectAspects: true depth: 2 aspects: - - SerialPart + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart direction: "downward" method: POST headers: @@ -1107,13 +1107,14 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_PLANNED}" + globalAssetId: urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c #"{tavern.env_vars.GLOBAL_ASSET_ID_AS_PLANNED}" bpn: "{tavern.env_vars.BPN_AS_PLANNED}" collectAspects: true bomLifecycle: asPlanned depth: 2 aspects: - - SingleLevelUsageAsPlanned + #- urn:samm:io.catenax.single_level_usage_as_planned:1.1.0#SingleLevelUsageAsPlanned + - urn:samm:io.catenax.single_level_bom_as_planned:3.0.0#SingleLevelBomAsPlanned direction: "downward" method: POST headers: @@ -1181,15 +1182,13 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" + globalAssetId: urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d #"{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" collectAspects: true depth: 2 aspects: - - ProductDescription - - CertificateOfDestruction - - SerialPart - - SingleLevelUsageAsBuilt + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart + #- urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt direction: "downward" method: POST headers: @@ -1240,7 +1239,7 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" + globalAssetId: urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d # "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" collectAspects: true depth: 1 @@ -1391,10 +1390,10 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" + globalAssetId: urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d #"{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" aspects: - - SerialPart + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart collectAspects: true depth: 1 method: POST @@ -1427,7 +1426,7 @@ stages: response: status_code: 200 verify_response_with: - #- function: local.testing.api-tests.tavern_helpers:tombstones_are_empty + # - 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 @@ -1450,11 +1449,13 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" + globalAssetId: urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d #"{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" aspects: - - SerialPart - - ProductDescription + # - urn:samm:io.catenax.serial_part:3.0.0#SerialPart + # - urn:samm:io.catenax.vehicle.product_description:1.0.0#ProductDescription + - urn:samm:io.catenax.battery.product_description:1.0.1#ProductDescription + #- ProductDescription collectAspects: true depth: 2 method: POST @@ -1510,10 +1511,10 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "urn:uuid:6d505432-8b31-4966-9514-4b753372683f" + globalAssetId: "urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d" bpn: "BPNL00000003AVTH" aspects: - - MaterialForRecycling + - urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling collectAspects: true depth: 2 method: POST @@ -1569,10 +1570,10 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5" + globalAssetId: "urn:uuid:622f4933-e02b-436c-9194-9e5bb71a45e2" #"urn:uuid:397b63ae-89d7-4131-b45a-575e840dc5c5" bpn: "BPNL00000003AVTH" aspects: - - Batch + - urn:samm:io.catenax.batch:3.0.0#Batch collectAspects: true bomLifecycle: "asBuilt" depth: 10 @@ -1632,8 +1633,8 @@ stages: globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" aspects: - - SerialPart - - CertificateOfDestruction + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart + - urn:samm:io.catenax.serial_part:2.0.0#CertificateOfDestruction collectAspects: true depth: 2 method: POST @@ -1692,7 +1693,7 @@ stages: globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_PLANNED}" bpn: "{tavern.env_vars.BPN_AS_PLANNED}" aspects: - - UnknownAspect + - "UnknownAspect" collectAspects: true method: POST headers: @@ -1727,17 +1728,12 @@ stages: globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" aspects: - - ProductDescription - - CertificateOfDestruction - - SerialPart - - SingleLevelUsageAsBuilt - - BatteryPass - - IdConversion - - MarketplaceOffer - - MaterialForRecycling - - ReturnRequest - - CertificateOfDestruction - - CertificateOfDismantler + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart + - urn:samm:io.catenax.single_level_usage_as_built:3.0.0#SingleLevelUsageAsBuilt + - urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass" + - urn:samm:io.catenax.market_place_offer:1.4.0#MarketPlaceOffer + - urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling + - urn:samm:io.catenax.return_request:1.0.1#ReturnRequest collectAspects: true method: POST headers: @@ -1828,28 +1824,14 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" + globalAssetId: urn:uuid:8724338c-5c85-4c34-91eb-e2735d58fb0d #"{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" aspects: - - SerialPart - - SingleLevelBomAsBuilt - - Batch - - ProductDescription - - IdConversion - - MarketplaceOffer - - MaterialForRecycling - - ReturnRequest - - CertificateOfDestruction - - CertificateOfDismantler - - EndOfLife - - EsrCertificate - - EsrCertificateStateStatistic - - AddressAspect - - ClaimData - - BatteryPass - - DiagnosticData - - MaterialForHomologation - - PartAsPlanned + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart + #- urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingeLevelBomAsBuilt + - urn:samm:io.catenax.batch:3.0.0#Batch + - urn:samm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling + #- urn:samm:io.catenax.battery.battery_pass:3.0.1#BatteryPass collectAspects: true depth: 2 method: POST @@ -2039,7 +2021,7 @@ stages: globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" aspects: - - SerialPart + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart collectAspects: true method: POST headers: @@ -2489,8 +2471,8 @@ stages: lookupBPNs: true callbackUrl: "https://www.check123.com" aspects: - - SerialPart - - PartAsPlanned + #- urn:samm:io.catenax.serial_part:3.0.0#SerialPart + - urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned method: POST headers: content-type: application/json @@ -2746,8 +2728,8 @@ stages: - bpn: "BPNL00000003AYRE" globalAssetId: urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743 aspects: - - "SingleLevelBomAsBuilt" - - "SerialPart" + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingeLevelBomAsBuilt + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart collectAspects: true lookupBPNs: true batchSize: 10 @@ -2806,8 +2788,8 @@ stages: - urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7 - urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e aspects: - - "SingleLevelBomAsBuilt" - - "SerialPart" + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingeLevelBomAsBuilt + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart collectAspects: true lookupBPNs: true batchSize: 2 @@ -2858,8 +2840,8 @@ stages: - bpn: "BPNL00000003AVTH" globalAssetId: urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001 aspects: - - "SingleLevelBomAsBuilt" - - "SerialPart" + - urn:samm:io.catenax.single_level_bom_as_built:3.0.0#SingeLevelBomAsBuilt + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart collectAspects: true lookupBPNs: true batchSize: 10 @@ -3219,13 +3201,13 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" + globalAssetId: "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3" #"{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" collectAspects: true auditContractNegotiation: true - depth: 2 + depth: 1 aspects: - - SerialPart + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart direction: "downward" method: POST headers: @@ -3276,13 +3258,13 @@ stages: url: "{tavern.env_vars.IRS_HOST}/irs/jobs" json: key: - globalAssetId: "{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" + globalAssetId: "urn:uuid:835eed75-8556-4d36-aae0-b3c550096af3" #"{tavern.env_vars.GLOBAL_ASSET_ID_AS_BUILT}" bpn: "{tavern.env_vars.BPN_AS_BUILT}" collectAspects: true auditContractNegotiation: false depth: 2 aspects: - - SerialPart + - urn:samm:io.catenax.serial_part:3.0.0#SerialPart direction: "downward" method: POST headers: diff --git a/local/testing/api-tests/tavern_helpers.py b/local/testing/api-tests/tavern_helpers.py index 5db44c9f4b..e1c8f35348 100644 --- a/local/testing/api-tests/tavern_helpers.py +++ b/local/testing/api-tests/tavern_helpers.py @@ -339,8 +339,7 @@ def job_parameter_are_as_requested(response): assert parameter.get('lookupBPNs') is True assert parameter.get('callbackUrl') == 'https://www.check123.com' aspects_list = parameter.get("aspects") - assert 'SerialPart' in aspects_list - assert 'PartAsPlanned' in aspects_list + assert 'urn:samm:io.catenax.part_as_planned:2.0.0#PartAsPlanned' in aspects_list def create_api_key(): 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 2230704708..b90817355b 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 @@ -511,7 +511,7 @@ "key" : "manufacturerId" }, { "value" : "TB-60", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "OMBQATUSKJNZLHPDF", "key" : "partInstanceId" @@ -666,19 +666,19 @@ "key" : "manufacturerId" }, { "value" : "73849201-61", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-237946004780203051455167", "key" : "partInstanceId" }, { "value" : "Company 10", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 10", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -825,19 +825,19 @@ "key" : "manufacturerId" }, { "value" : "22782277-50", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-132222698930095466785219", "key" : "partInstanceId" }, { "value" : "Company 3", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 3", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -922,7 +922,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -1015,13 +1015,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-073366714159387479576634", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -1168,19 +1168,19 @@ "key" : "manufacturerId" }, { "value" : "95657362-64", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-308061107177299146814515", "key" : "partInstanceId" }, { "value" : "Company 4", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 4", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -1265,7 +1265,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -1358,13 +1358,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-549219340251150430970046", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -1497,13 +1497,13 @@ "key" : "manufacturerId" }, { "value" : "15635759-16", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-333852895168705794472199", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -1636,19 +1636,19 @@ "key" : "manufacturerId" }, { "value" : "28673126-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-118749418886331961020320", "key" : "partInstanceId" }, { "value" : "Company 5", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 5", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -1781,19 +1781,19 @@ "key" : "manufacturerId" }, { "value" : "94421589-82", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-667678187568709354492498", "key" : "partInstanceId" }, { "value" : "Company 6", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 6", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -1926,13 +1926,13 @@ "key" : "manufacturerId" }, { "value" : "85023955-75", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-148296997357787499803562", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -2065,13 +2065,13 @@ "key" : "manufacturerId" }, { "value" : "13769860-47", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-239887722158455392857917", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -2204,13 +2204,13 @@ "key" : "manufacturerId" }, { "value" : "36643162-35", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-068706319098702362453776", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -2343,13 +2343,13 @@ "key" : "manufacturerId" }, { "value" : "54165444-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-846173490949169497250957", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -2482,13 +2482,13 @@ "key" : "manufacturerId" }, { "value" : "22768257-25", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-264045982210489399185810", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -2621,13 +2621,13 @@ "key" : "manufacturerId" }, { "value" : "65529521-37", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-538314032599018242331006", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -2760,13 +2760,13 @@ "key" : "manufacturerId" }, { "value" : "58471477-24", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-993176322579834430064051", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -2899,13 +2899,13 @@ "key" : "manufacturerId" }, { "value" : "09002013-68", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-781615740005254426594801", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -3038,13 +3038,13 @@ "key" : "manufacturerId" }, { "value" : "43501996-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-629305707358689604279789", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -3177,13 +3177,13 @@ "key" : "manufacturerId" }, { "value" : "77795937-13", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-667158461405603139778847", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -3316,13 +3316,13 @@ "key" : "manufacturerId" }, { "value" : "20125432-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-627875351311372739950698", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -3455,13 +3455,13 @@ "key" : "manufacturerId" }, { "value" : "19073706-76", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-405115979688970854791474", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -3594,13 +3594,13 @@ "key" : "manufacturerId" }, { "value" : "45415162-57", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-547789641918425235492602", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -3733,13 +3733,13 @@ "key" : "manufacturerId" }, { "value" : "78141846-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-162319335483232292850947", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -3872,13 +3872,13 @@ "key" : "manufacturerId" }, { "value" : "81324139-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-517838736103503680241432", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -4011,13 +4011,13 @@ "key" : "manufacturerId" }, { "value" : "57929013-09", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-863929753905373967106622", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -4150,13 +4150,13 @@ "key" : "manufacturerId" }, { "value" : "61184040-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-573486511202825465909783", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -4289,13 +4289,13 @@ "key" : "manufacturerId" }, { "value" : "78744126-74", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-039945475879396863733510", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -4428,13 +4428,13 @@ "key" : "manufacturerId" }, { "value" : "12093297-03", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-967002501485712008404139", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -4567,13 +4567,13 @@ "key" : "manufacturerId" }, { "value" : "88111709-49", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-838288806889001789093226", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -4706,13 +4706,13 @@ "key" : "manufacturerId" }, { "value" : "00871379-44", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-878652606269557322711382", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -4845,13 +4845,13 @@ "key" : "manufacturerId" }, { "value" : "08901347-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-101499617029308483778470", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -4984,13 +4984,13 @@ "key" : "manufacturerId" }, { "value" : "45863316-60", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-215625412208452667296362", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -5190,19 +5190,19 @@ "key" : "manufacturerId" }, { "value" : "42555H1-52", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-392235679424701475513847", "key" : "partInstanceId" }, { "value" : "Company 2", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 2", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B2OM", @@ -5541,7 +5541,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -5681,13 +5681,13 @@ "key" : "manufacturerId" }, { "value" : "08708I5-06", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-072282005385522070609321", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -5869,7 +5869,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -6016,7 +6016,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -6189,13 +6189,13 @@ "key" : "manufacturerId" }, { "value" : "43954M5-06", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-840583801183834314235504", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -6415,7 +6415,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -6555,13 +6555,13 @@ "key" : "manufacturerId" }, { "value" : "02059V6-96", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-099904543678137082014006", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -6743,7 +6743,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -6894,13 +6894,13 @@ "key" : "manufacturerId" }, { "value" : "56721H1-81", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-505064196503133330376728", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -7032,19 +7032,19 @@ "key" : "manufacturerId" }, { "value" : "38049661-08", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-176599588259345153547203", "key" : "partInstanceId" }, { "value" : "Company 1", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 1", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -7236,7 +7236,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -8019,13 +8019,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-201987510441217567632862", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -8499,7 +8499,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -9460,7 +9460,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -9621,13 +9621,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-671324987876344500699840", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -10052,7 +10052,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -10213,13 +10213,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-433039983976537226769763", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -10644,7 +10644,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -10805,13 +10805,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-479198688158408022762058", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -11251,13 +11251,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-132833531716096180711426", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -11697,13 +11697,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-292241856305076855775588", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -12143,13 +12143,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-199218937729794417191306", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -12589,13 +12589,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-797503102340948265815692", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -13035,13 +13035,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-675038433261641027148171", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -13481,13 +13481,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-490203710993131773561088", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -13927,13 +13927,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-946429514730639817233206", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -14485,13 +14485,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-296848907669508648073521", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -14965,7 +14965,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -15926,7 +15926,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -16087,13 +16087,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-016339537790317629674230", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -16533,13 +16533,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-617981988528419498927484", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -16979,13 +16979,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-320853368171916289548897", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -17425,13 +17425,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-992341679513676507660096", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -17871,13 +17871,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-073655130038141205508570", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -18317,13 +18317,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-261194026953093506440422", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -18763,13 +18763,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-535611923072661018387594", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -19209,13 +19209,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-484647398722946442239604", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -19655,13 +19655,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-813080145802249908284610", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -20101,13 +20101,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-959547848200732624330573", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -20659,13 +20659,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-444049960239880933393726", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -21139,7 +21139,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -21465,13 +21465,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-914378285285794559596331", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -21911,13 +21911,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-208079010497383150143341", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -22357,13 +22357,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-186835878158661663948625", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -22803,13 +22803,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-469066644573312236590150", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -23249,13 +23249,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-968294246751594821198186", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -23695,13 +23695,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-727859505217916052545732", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -24141,13 +24141,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-634147692982310270951905", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -24587,13 +24587,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-313782703750602425316051", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -25033,13 +25033,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-810796015857366550760177", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -25479,13 +25479,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-282429356471879113475504", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -26037,13 +26037,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-004408690175782905965278", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -26517,7 +26517,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -26843,13 +26843,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-957187015679612885785906", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -27289,13 +27289,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-760592533179373962741529", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -27735,13 +27735,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-708297363451953472023890", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -28181,13 +28181,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-029529278592433295756746", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -28627,13 +28627,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-830575760219801993867025", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -29073,13 +29073,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-684184848273081919696221", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -29519,13 +29519,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-039223807230856042953836", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -29965,13 +29965,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-347116735745663646665615", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -30411,13 +30411,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-945021193800451566340978", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -30857,13 +30857,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-484325548258551080620438", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -31415,13 +31415,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-396892550112390060297089", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -31895,7 +31895,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -32221,13 +32221,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-936595542990754600925788", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -32667,13 +32667,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-564950367804649428245953", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -33113,13 +33113,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-032804246183692203092051", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -33559,13 +33559,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-157546003879482080514027", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -34005,13 +34005,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-177922074842125795420007", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -34451,13 +34451,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-214635896808155138901731", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -34897,13 +34897,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-717852589858335943379764", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -35343,13 +35343,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-757694058301393495015233", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -35789,13 +35789,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-795678168368907772963536", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -36235,13 +36235,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-729292714417407952927805", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -36793,13 +36793,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-359081035858409777849821", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -37273,7 +37273,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -37599,13 +37599,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-970096378233819741474519", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -38045,13 +38045,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-318132647172819069875892", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -38491,13 +38491,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-005302332284040801035461", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -38937,13 +38937,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-633235849695047729477643", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -39383,13 +39383,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-180507091805456863307743", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -39829,13 +39829,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-296563716806108031733209", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -40275,13 +40275,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-250801480041613674840227", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -40721,13 +40721,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-733273787017273071493331", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -41167,13 +41167,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-092034534832069879588800", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -41613,13 +41613,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-736835087578073393468258", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -42386,7 +42386,7 @@ "key" : "manufacturerId" }, { "value" : "ZZ-43", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "OMCLTKSQIIWSAVTDX", "key" : "partInstanceId" @@ -42541,19 +42541,19 @@ "key" : "manufacturerId" }, { "value" : "73849201-61", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-058312915657981127343520", "key" : "partInstanceId" }, { "value" : "Company 10", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 10", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -42700,19 +42700,19 @@ "key" : "manufacturerId" }, { "value" : "22782277-50", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-828789896602323276359989", "key" : "partInstanceId" }, { "value" : "Company 3", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 3", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -42797,7 +42797,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -42890,13 +42890,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-885256708530390045836416", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -43043,19 +43043,19 @@ "key" : "manufacturerId" }, { "value" : "95657362-64", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-454490705156894111920051", "key" : "partInstanceId" }, { "value" : "Company 4", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 4", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -43140,7 +43140,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -43233,13 +43233,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-499009584330431877361640", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -43372,13 +43372,13 @@ "key" : "manufacturerId" }, { "value" : "15635759-16", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-529380834656608753684129", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -43511,19 +43511,19 @@ "key" : "manufacturerId" }, { "value" : "28673126-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-870150178712038444914762", "key" : "partInstanceId" }, { "value" : "Company 5", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 5", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -43656,19 +43656,19 @@ "key" : "manufacturerId" }, { "value" : "94421589-82", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-559141980423426926539653", "key" : "partInstanceId" }, { "value" : "Company 6", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 6", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -43801,13 +43801,13 @@ "key" : "manufacturerId" }, { "value" : "85023955-75", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-088469086393847675759224", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -43940,13 +43940,13 @@ "key" : "manufacturerId" }, { "value" : "13769860-47", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-352265423281673006053418", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -44079,13 +44079,13 @@ "key" : "manufacturerId" }, { "value" : "36643162-35", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-612914357446690451421383", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -44218,13 +44218,13 @@ "key" : "manufacturerId" }, { "value" : "54165444-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-738575759557152059293185", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -44357,13 +44357,13 @@ "key" : "manufacturerId" }, { "value" : "22768257-25", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-595595006629612700374000", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -44496,13 +44496,13 @@ "key" : "manufacturerId" }, { "value" : "65529521-37", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-586221622801763693687724", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -44635,13 +44635,13 @@ "key" : "manufacturerId" }, { "value" : "58471477-24", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-944539773288669451332122", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -44774,13 +44774,13 @@ "key" : "manufacturerId" }, { "value" : "09002013-68", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-090046616329838127958612", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -44913,13 +44913,13 @@ "key" : "manufacturerId" }, { "value" : "43501996-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-462536285410053826378363", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -45052,13 +45052,13 @@ "key" : "manufacturerId" }, { "value" : "77795937-13", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-172274751687857627767355", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -45191,13 +45191,13 @@ "key" : "manufacturerId" }, { "value" : "20125432-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-579949786958122834348139", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -45330,13 +45330,13 @@ "key" : "manufacturerId" }, { "value" : "19073706-76", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-048096235253954167013742", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -45469,13 +45469,13 @@ "key" : "manufacturerId" }, { "value" : "45415162-57", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-177557979104500280812861", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -45608,13 +45608,13 @@ "key" : "manufacturerId" }, { "value" : "78141846-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-557750946606305333383371", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -45747,13 +45747,13 @@ "key" : "manufacturerId" }, { "value" : "81324139-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-214979211528771174001672", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -45886,13 +45886,13 @@ "key" : "manufacturerId" }, { "value" : "57929013-09", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-014664588560503861143502", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -46025,13 +46025,13 @@ "key" : "manufacturerId" }, { "value" : "61184040-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-217207783928800567323032", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -46164,13 +46164,13 @@ "key" : "manufacturerId" }, { "value" : "78744126-74", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-192432464950241883302809", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -46303,13 +46303,13 @@ "key" : "manufacturerId" }, { "value" : "12093297-03", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-688886052161401712154236", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -46442,13 +46442,13 @@ "key" : "manufacturerId" }, { "value" : "88111709-49", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-283792124536385275336832", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -46581,13 +46581,13 @@ "key" : "manufacturerId" }, { "value" : "00871379-44", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-508556332461303289237835", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -46720,13 +46720,13 @@ "key" : "manufacturerId" }, { "value" : "08901347-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-434707457533005899553424", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -46859,13 +46859,13 @@ "key" : "manufacturerId" }, { "value" : "45863316-60", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-883323395134521591790236", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -47065,19 +47065,19 @@ "key" : "manufacturerId" }, { "value" : "42555H1-52", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-668588073256148815627504", "key" : "partInstanceId" }, { "value" : "Company 2", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 2", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B2OM", @@ -47416,7 +47416,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -47556,13 +47556,13 @@ "key" : "manufacturerId" }, { "value" : "16197V4-00", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-852975893046307291892542", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -47744,7 +47744,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -47891,7 +47891,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -48064,13 +48064,13 @@ "key" : "manufacturerId" }, { "value" : "77085T0-51", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-454563464853769874329904", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -48290,7 +48290,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -48430,13 +48430,13 @@ "key" : "manufacturerId" }, { "value" : "85033D1-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-864887680955990068635173", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -48618,7 +48618,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -48769,13 +48769,13 @@ "key" : "manufacturerId" }, { "value" : "70156B3-03", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-624371046700086263696291", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -48907,19 +48907,19 @@ "key" : "manufacturerId" }, { "value" : "38049661-08", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-703935166323445267418607", "key" : "partInstanceId" }, { "value" : "Company 1", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 1", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -49111,7 +49111,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -49894,13 +49894,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-149034940347629807974954", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -50374,7 +50374,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -50700,13 +50700,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-153249685479382694162369", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -51146,13 +51146,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-100348889861720225961543", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -51592,13 +51592,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-923706772363859834126509", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -52038,13 +52038,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-174638927682487327941825", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -52484,13 +52484,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-470288501287804086872859", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -52930,13 +52930,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-967123189742391859765807", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -53376,13 +53376,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-597268819056305633390104", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -53822,13 +53822,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-155286588720399385866335", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -54268,13 +54268,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-631809235645814770651588", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -54714,13 +54714,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-953401953268255862600789", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -55272,13 +55272,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-465303211980397443044303", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -55752,7 +55752,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -56078,13 +56078,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-059536600363127353614408", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -56524,13 +56524,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-973606156008960156293152", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -56970,13 +56970,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-620994564712485756656214", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -57416,13 +57416,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-898160141651811826325581", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -57862,13 +57862,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-766867050383618231098812", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -58308,13 +58308,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-100854579053767656486307", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -58754,13 +58754,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-929343602416229414219002", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -59200,13 +59200,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-557737221411224973606496", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -59646,13 +59646,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-122491485429919175542942", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -60092,13 +60092,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-514722710964971857791665", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -60650,13 +60650,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-240160927483664731586703", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -61130,7 +61130,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -61456,13 +61456,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-527345668639002464490329", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -61902,13 +61902,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-747371895715357584120035", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -62348,13 +62348,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-880508248605583476310393", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -62794,13 +62794,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-531564517305551088266581", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -63240,13 +63240,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-657389294755810188273807", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -63686,13 +63686,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-059324923880677811268903", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -64132,13 +64132,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-472858555790076270035205", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -64578,13 +64578,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-297431803670890490193465", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -65024,13 +65024,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-542472084400095778418675", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -65470,13 +65470,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-455801323952874989628244", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -66028,13 +66028,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-597678879036304738525193", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -66508,7 +66508,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -66834,13 +66834,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-890670937507105471164702", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -67280,13 +67280,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-251407512196380015033368", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -67726,13 +67726,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-583526185149068413940848", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -68172,13 +68172,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-491919401576325473294029", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -68618,13 +68618,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-976977065357288560640502", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -69064,13 +69064,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-287579045342977400706749", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -69510,13 +69510,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-983223303842967272076091", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -69956,13 +69956,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-320993768856422151278872", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -70402,13 +70402,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-675735053473937289489302", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -70848,13 +70848,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-373423137256259745237611", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -71406,13 +71406,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-907456962530197506538386", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -71886,7 +71886,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -72212,13 +72212,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-206738772181691926197855", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -72658,13 +72658,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-052742864589164739825645", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -73104,13 +73104,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-281213755155050898351986", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -73550,13 +73550,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-355201394729594644758836", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -73996,13 +73996,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-075939486526376984282709", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -74442,13 +74442,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-270029099598139084769212", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -74888,13 +74888,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-772012543261150096664019", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -75334,13 +75334,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-048797398304208592765909", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -75780,13 +75780,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-812588298789193003640192", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -76226,13 +76226,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-000743703018230304191522", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -76784,13 +76784,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-186380493887351002249452", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -77264,7 +77264,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -77590,13 +77590,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-134154718769034545537323", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -78036,13 +78036,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-897050660525551336224831", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -78482,13 +78482,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-398008298774303211921580", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -78928,13 +78928,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-800917851767894262581567", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -79374,13 +79374,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-782275150433189261307455", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -79820,13 +79820,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-884935048973859075276674", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -80266,13 +80266,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-186036721911035672042107", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -80712,13 +80712,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-900471593771521504945024", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -81158,13 +81158,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-647834746207970787337902", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -81604,13 +81604,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-526026936641650650967439", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -82377,7 +82377,7 @@ "key" : "manufacturerId" }, { "value" : "ZS-49", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "OMBPMUVLCXXZOWCMJ", "key" : "partInstanceId" @@ -82532,19 +82532,19 @@ "key" : "manufacturerId" }, { "value" : "73849201-61", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-975001459823431045751153", "key" : "partInstanceId" }, { "value" : "Company 10", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 10", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -82691,19 +82691,19 @@ "key" : "manufacturerId" }, { "value" : "22782277-50", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-335386791211940584158116", "key" : "partInstanceId" }, { "value" : "Company 3", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 3", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -82788,7 +82788,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -82881,13 +82881,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-962680212429426118874899", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -83034,19 +83034,19 @@ "key" : "manufacturerId" }, { "value" : "95657362-64", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-482541186838482146151545", "key" : "partInstanceId" }, { "value" : "Company 4", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 4", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -83131,7 +83131,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -83224,13 +83224,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-554904911286543987554216", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -83363,13 +83363,13 @@ "key" : "manufacturerId" }, { "value" : "15635759-16", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-480669550705675128141562", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -83502,19 +83502,19 @@ "key" : "manufacturerId" }, { "value" : "28673126-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-297345194310294821167478", "key" : "partInstanceId" }, { "value" : "Company 5", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 5", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -83647,19 +83647,19 @@ "key" : "manufacturerId" }, { "value" : "94421589-82", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-148791030618665543227159", "key" : "partInstanceId" }, { "value" : "Company 6", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 6", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -83792,13 +83792,13 @@ "key" : "manufacturerId" }, { "value" : "85023955-75", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-950316208244013340642739", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -83931,13 +83931,13 @@ "key" : "manufacturerId" }, { "value" : "13769860-47", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-925686063262121682428671", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -84070,13 +84070,13 @@ "key" : "manufacturerId" }, { "value" : "36643162-35", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-889797773496006924368331", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -84209,13 +84209,13 @@ "key" : "manufacturerId" }, { "value" : "54165444-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-341961647694717983607414", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -84348,13 +84348,13 @@ "key" : "manufacturerId" }, { "value" : "22768257-25", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-970184929223671657380079", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -84487,13 +84487,13 @@ "key" : "manufacturerId" }, { "value" : "65529521-37", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-027049062777701048893349", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -84626,13 +84626,13 @@ "key" : "manufacturerId" }, { "value" : "58471477-24", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-015974619274064623422022", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -84765,13 +84765,13 @@ "key" : "manufacturerId" }, { "value" : "09002013-68", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-123272195421376145336496", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -84904,13 +84904,13 @@ "key" : "manufacturerId" }, { "value" : "43501996-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-955636203002042643561671", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -85043,13 +85043,13 @@ "key" : "manufacturerId" }, { "value" : "77795937-13", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-668608539671271875264871", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -85182,13 +85182,13 @@ "key" : "manufacturerId" }, { "value" : "20125432-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-909406989040813591067152", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -85321,13 +85321,13 @@ "key" : "manufacturerId" }, { "value" : "19073706-76", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-712542909817646635893498", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -85460,13 +85460,13 @@ "key" : "manufacturerId" }, { "value" : "45415162-57", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-744807829977914804467911", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -85599,13 +85599,13 @@ "key" : "manufacturerId" }, { "value" : "78141846-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-001742371880757211938381", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -85738,13 +85738,13 @@ "key" : "manufacturerId" }, { "value" : "81324139-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-206706222944221258727004", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -85877,13 +85877,13 @@ "key" : "manufacturerId" }, { "value" : "57929013-09", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-483115736481205925292116", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -86016,13 +86016,13 @@ "key" : "manufacturerId" }, { "value" : "61184040-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-763017179063365380190964", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -86155,13 +86155,13 @@ "key" : "manufacturerId" }, { "value" : "78744126-74", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-207568130451579171710915", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -86294,13 +86294,13 @@ "key" : "manufacturerId" }, { "value" : "12093297-03", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-444337350901528558858992", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -86433,13 +86433,13 @@ "key" : "manufacturerId" }, { "value" : "88111709-49", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-433533160602951670664143", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -86572,13 +86572,13 @@ "key" : "manufacturerId" }, { "value" : "00871379-44", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-249946966569555718135189", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -86711,13 +86711,13 @@ "key" : "manufacturerId" }, { "value" : "08901347-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-174090109136872872766676", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -86850,13 +86850,13 @@ "key" : "manufacturerId" }, { "value" : "45863316-60", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-012626875057791040363969", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -87056,19 +87056,19 @@ "key" : "manufacturerId" }, { "value" : "42555H1-52", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-143089154601261855753389", "key" : "partInstanceId" }, { "value" : "Company 2", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 2", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B2OM", @@ -87407,7 +87407,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -87547,13 +87547,13 @@ "key" : "manufacturerId" }, { "value" : "92547Z4-89", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-455460779808771000947246", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -87735,7 +87735,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -87882,7 +87882,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -88055,13 +88055,13 @@ "key" : "manufacturerId" }, { "value" : "77136H7-68", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-432349591499397336015737", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -88281,7 +88281,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -88421,13 +88421,13 @@ "key" : "manufacturerId" }, { "value" : "43065M5-33", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-900603834614288799374160", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -88609,7 +88609,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -88760,13 +88760,13 @@ "key" : "manufacturerId" }, { "value" : "07238J4-45", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-199908341628893542049026", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -88898,19 +88898,19 @@ "key" : "manufacturerId" }, { "value" : "38049661-08", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-629148426832070851940458", "key" : "partInstanceId" }, { "value" : "Company 1", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 1", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -89102,7 +89102,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -89885,13 +89885,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-816927354992517373478168", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -90365,7 +90365,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -90691,13 +90691,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-046702061904874808708796", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -91137,13 +91137,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-470874275732939576623426", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -91583,13 +91583,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-085619066206559305485202", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -92029,13 +92029,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-757339058089831668193292", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -92475,13 +92475,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-625897587140967036600345", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -92921,13 +92921,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-452748343042728907626021", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -93367,13 +93367,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-080214182903807107239261", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -93813,13 +93813,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-238785908693173993701869", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -94259,13 +94259,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-172826221038997175209151", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -94705,13 +94705,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-971590305979907343173679", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -95263,13 +95263,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-336392663226749996266073", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -95743,7 +95743,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -96069,13 +96069,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-842110813695126127816787", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -96515,13 +96515,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-901075001338711413234812", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -96961,13 +96961,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-162200942779463110193609", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -97407,13 +97407,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-058298438745598770420719", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -97853,13 +97853,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-619993831308626846896497", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -98299,13 +98299,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-977704584411529006588832", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -98745,13 +98745,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-332150147131165825407893", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -99191,13 +99191,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-308925915756189788164176", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -99637,13 +99637,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-396384175246102676232025", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -100083,13 +100083,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-787709570641890998925139", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -100641,13 +100641,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-813954363927946566927046", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -101121,7 +101121,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -101447,13 +101447,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-353177263076937406980534", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -101893,13 +101893,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-103687604595307515776989", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -102339,13 +102339,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-021417401259333589053767", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -102785,13 +102785,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-379656394358398977767787", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -103231,13 +103231,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-851795906012186517139798", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -103677,13 +103677,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-535857797589032688407109", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -104123,13 +104123,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-891443010663294430339387", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -104569,13 +104569,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-015156631174182144932841", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -105015,13 +105015,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-593620449184117256671167", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -105461,13 +105461,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-500869015063897903165169", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -106019,13 +106019,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-299250302066174356688340", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -106499,7 +106499,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -106825,13 +106825,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-761118606872897346517498", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -107271,13 +107271,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-874321513761335588378709", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -107717,13 +107717,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-342236709136076823061034", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -108163,13 +108163,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-938212604599539570895309", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -108609,13 +108609,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-028690566422024909405570", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -109055,13 +109055,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-443620290801454528608838", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -109501,13 +109501,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-373530199750331239499694", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -109947,13 +109947,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-000884847473256397893511", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -110393,13 +110393,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-872284497289268828850972", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -110839,13 +110839,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-184779682912162798050449", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -111397,13 +111397,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-583642165673004734306920", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -111877,7 +111877,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -112203,13 +112203,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-584589060546938156743639", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -112649,13 +112649,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-097656155974844166092025", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -113095,13 +113095,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-906720475287942484971848", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -113541,13 +113541,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-864890239944843406247402", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -113987,13 +113987,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-420096744871300139960196", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -114433,13 +114433,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-775017670642304020030227", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -114879,13 +114879,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-693651648079618727347715", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -115325,13 +115325,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-828741902571921103739667", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -115771,13 +115771,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-591321746588861481641977", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -116217,13 +116217,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-976405785842786943411308", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -116775,13 +116775,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-977339448342507377280022", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -117255,7 +117255,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -117581,13 +117581,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-649686248132682387519763", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -118027,13 +118027,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-932126621028416918869890", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -118473,13 +118473,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-265842576666662883131948", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -118919,13 +118919,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-408768191108077260382795", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -119365,13 +119365,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-345960433403675209960230", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -119811,13 +119811,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-427371659239686645615774", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -120257,13 +120257,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-657784086680049310074224", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -120703,13 +120703,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-985917467897435611472151", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -121149,13 +121149,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-402366524753095150071304", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -121595,13 +121595,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-391895037671891491068331", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -122368,7 +122368,7 @@ "key" : "manufacturerId" }, { "value" : "PC-28", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "OMAVHOPORUNZXBLLA", "key" : "partInstanceId" @@ -122523,19 +122523,19 @@ "key" : "manufacturerId" }, { "value" : "73849201-61", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-140816701374400389504456", "key" : "partInstanceId" }, { "value" : "Company 10", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 10", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -122682,19 +122682,19 @@ "key" : "manufacturerId" }, { "value" : "22782277-50", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-145020220675460346495389", "key" : "partInstanceId" }, { "value" : "Company 3", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 3", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -122779,7 +122779,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -122872,13 +122872,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-634391319433688898264208", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -123025,19 +123025,19 @@ "key" : "manufacturerId" }, { "value" : "95657362-64", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-757808915893862992607056", "key" : "partInstanceId" }, { "value" : "Company 4", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 4", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -123122,7 +123122,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -123215,13 +123215,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-697788953263381055413466", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -123354,13 +123354,13 @@ "key" : "manufacturerId" }, { "value" : "15635759-16", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-653612956947623601612006", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -123493,19 +123493,19 @@ "key" : "manufacturerId" }, { "value" : "28673126-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-846584993787476923610651", "key" : "partInstanceId" }, { "value" : "Company 5", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 5", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -123638,19 +123638,19 @@ "key" : "manufacturerId" }, { "value" : "94421589-82", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-324318893440632794409402", "key" : "partInstanceId" }, { "value" : "Company 6", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 6", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -123783,13 +123783,13 @@ "key" : "manufacturerId" }, { "value" : "85023955-75", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-462236595118986222488814", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -123922,13 +123922,13 @@ "key" : "manufacturerId" }, { "value" : "13769860-47", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-376983895573429430312771", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -124061,13 +124061,13 @@ "key" : "manufacturerId" }, { "value" : "36643162-35", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-669324015381709299075681", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -124200,13 +124200,13 @@ "key" : "manufacturerId" }, { "value" : "54165444-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-840025256384714282504938", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -124339,13 +124339,13 @@ "key" : "manufacturerId" }, { "value" : "22768257-25", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-597774853565321844837459", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -124478,13 +124478,13 @@ "key" : "manufacturerId" }, { "value" : "65529521-37", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-932753597881427636293704", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -124617,13 +124617,13 @@ "key" : "manufacturerId" }, { "value" : "58471477-24", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-337205923049940599347636", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -124756,13 +124756,13 @@ "key" : "manufacturerId" }, { "value" : "09002013-68", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-868511190630987435358438", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -124895,13 +124895,13 @@ "key" : "manufacturerId" }, { "value" : "43501996-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-027069717568924142128693", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -125034,13 +125034,13 @@ "key" : "manufacturerId" }, { "value" : "77795937-13", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-981817296766051418121623", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -125173,13 +125173,13 @@ "key" : "manufacturerId" }, { "value" : "20125432-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-049149906127737207642454", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -125312,13 +125312,13 @@ "key" : "manufacturerId" }, { "value" : "19073706-76", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-854676697474862936393828", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -125451,13 +125451,13 @@ "key" : "manufacturerId" }, { "value" : "45415162-57", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-280723231044514028929700", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -125590,13 +125590,13 @@ "key" : "manufacturerId" }, { "value" : "78141846-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-546923032331232343378186", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -125729,13 +125729,13 @@ "key" : "manufacturerId" }, { "value" : "81324139-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-118420745212823143151249", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -125868,13 +125868,13 @@ "key" : "manufacturerId" }, { "value" : "57929013-09", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-346386415878360189792135", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -126007,13 +126007,13 @@ "key" : "manufacturerId" }, { "value" : "61184040-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-185130687109752250587638", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -126146,13 +126146,13 @@ "key" : "manufacturerId" }, { "value" : "78744126-74", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-039706753568874019967653", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -126285,13 +126285,13 @@ "key" : "manufacturerId" }, { "value" : "12093297-03", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-998982098488787010970286", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -126424,13 +126424,13 @@ "key" : "manufacturerId" }, { "value" : "88111709-49", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-712547592971864835151018", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -126563,13 +126563,13 @@ "key" : "manufacturerId" }, { "value" : "00871379-44", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-233550478249516645945753", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -126702,13 +126702,13 @@ "key" : "manufacturerId" }, { "value" : "08901347-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-464038483769535552094897", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -126841,13 +126841,13 @@ "key" : "manufacturerId" }, { "value" : "45863316-60", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-188833714026594469826129", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -127047,19 +127047,19 @@ "key" : "manufacturerId" }, { "value" : "42555H1-52", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-318663460450330470472394", "key" : "partInstanceId" }, { "value" : "Company 2", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 2", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B2OM", @@ -127398,7 +127398,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -127538,13 +127538,13 @@ "key" : "manufacturerId" }, { "value" : "58808R3-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-277255157969174594907803", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -127726,7 +127726,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -127873,7 +127873,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -128046,13 +128046,13 @@ "key" : "manufacturerId" }, { "value" : "87424V8-68", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-073819087625528106236311", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -128272,7 +128272,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -128412,13 +128412,13 @@ "key" : "manufacturerId" }, { "value" : "43992K6-63", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-893527191749220349140050", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -128600,7 +128600,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -128751,13 +128751,13 @@ "key" : "manufacturerId" }, { "value" : "35290I8-61", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-730880564404733288466942", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -128889,19 +128889,19 @@ "key" : "manufacturerId" }, { "value" : "38049661-08", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-396609437206965622860492", "key" : "partInstanceId" }, { "value" : "Company 1", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 1", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -129093,7 +129093,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -129876,13 +129876,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-861507098247135201326269", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -130356,7 +130356,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -130682,13 +130682,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-045687080273213632469255", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -131128,13 +131128,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-238795120033147590800901", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -131574,13 +131574,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-136752824476347417416968", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -132020,13 +132020,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-496228919958328322723796", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -132466,13 +132466,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-093033786558024834039405", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -132912,13 +132912,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-350017826715088566619919", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -133358,13 +133358,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-477192556802942593241896", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -133804,13 +133804,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-063922441827556669651970", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -134250,13 +134250,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-911510362787579559079286", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -134696,13 +134696,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-154463244007109507380049", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -135254,13 +135254,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-572372710040873558705452", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -135734,7 +135734,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -136060,13 +136060,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-203671166348709875780872", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -136506,13 +136506,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-931937961024578613536361", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -136952,13 +136952,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-680434833839072796102873", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -137398,13 +137398,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-475960552493004844235088", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -137844,13 +137844,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-882877641360870571303386", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -138290,13 +138290,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-297888230884067807374076", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -138736,13 +138736,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-853195758402311021260255", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -139182,13 +139182,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-260332478775863502688771", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -139628,13 +139628,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-519038155525589438619631", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -140074,13 +140074,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-992573505811578278902838", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -140632,13 +140632,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-969960797989408938117141", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -141112,7 +141112,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -141438,13 +141438,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-226023691045065437700437", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -141884,13 +141884,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-638900391984588996515049", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -142330,13 +142330,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-057830015270560165419091", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -142776,13 +142776,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-557472139690957066309926", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -143222,13 +143222,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-105696138826998999306110", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -143668,13 +143668,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-431377886995083541391036", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -144114,13 +144114,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-606201604140904906173351", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -144560,13 +144560,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-914462774318298044622010", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -145006,13 +145006,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-195859396927351391264231", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -145452,13 +145452,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-889687688845816961721724", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -146010,13 +146010,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-857631194932419190104530", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -146490,7 +146490,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -146816,13 +146816,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-033187291802612240488116", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -147262,13 +147262,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-763258057586760595189315", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -147708,13 +147708,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-807719426538390909952668", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -148154,13 +148154,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-124938441622083380062715", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -148600,13 +148600,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-253736684644667524930063", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -149046,13 +149046,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-931077905564998045847086", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -149492,13 +149492,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-642827238001626781850767", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -149938,13 +149938,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-834387545083124280128719", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -150384,13 +150384,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-948855500012008612886590", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -150830,13 +150830,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-457871180464872997622197", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -151388,13 +151388,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-261702803650729736821892", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -151868,7 +151868,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -152194,13 +152194,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-099203349826075528663112", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -152640,13 +152640,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-090719935490896015082395", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -153086,13 +153086,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-188187379165642236616963", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -153532,13 +153532,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-845315176520240409814819", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -153978,13 +153978,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-146223815260009523712436", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -154424,13 +154424,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-833206370828295257523454", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -154870,13 +154870,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-394260612845106565418776", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -155316,13 +155316,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-263841937177235283682631", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -155762,13 +155762,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-153209568741166125868697", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -156208,13 +156208,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-608558517614927714755745", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -156766,13 +156766,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-027592507924474738071852", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -157246,7 +157246,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -157572,13 +157572,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-106892024730314547507922", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -158018,13 +158018,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-631011693710128610783939", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -158464,13 +158464,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-384564807221739331766071", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -158910,13 +158910,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-021961286068030704179273", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -159356,13 +159356,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-189091928059980735726425", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -159802,13 +159802,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-941343107717238854755561", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -160248,13 +160248,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-443753552801791993980233", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -160694,13 +160694,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-641688372626415359636594", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -161140,13 +161140,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-528976416624234587910741", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -161586,13 +161586,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-600811642696073800844376", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -162359,7 +162359,7 @@ "key" : "manufacturerId" }, { "value" : "ZH-30", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "OMBWFRKDADFXIKBGU", "key" : "partInstanceId" @@ -162514,19 +162514,19 @@ "key" : "manufacturerId" }, { "value" : "73849201-61", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-948964819995699405884009", "key" : "partInstanceId" }, { "value" : "Company 10", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 10", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -162673,19 +162673,19 @@ "key" : "manufacturerId" }, { "value" : "22782277-50", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-230982514205879884205703", "key" : "partInstanceId" }, { "value" : "Company 3", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 3", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -162770,7 +162770,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -162863,13 +162863,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-130266291136593933660106", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -163016,19 +163016,19 @@ "key" : "manufacturerId" }, { "value" : "95657362-64", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-556147563281042718061689", "key" : "partInstanceId" }, { "value" : "Company 4", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 4", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -163113,7 +163113,7 @@ "key" : "jisNumber" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000000BJTL", @@ -163206,13 +163206,13 @@ "key" : "manufacturerId" }, { "value" : "95657762-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-528220564559373883742673", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -163345,13 +163345,13 @@ "key" : "manufacturerId" }, { "value" : "15635759-16", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-084097115656130448089157", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -163484,19 +163484,19 @@ "key" : "manufacturerId" }, { "value" : "28673126-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-969324281837325916922383", "key" : "partInstanceId" }, { "value" : "Company 5", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 5", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -163629,19 +163629,19 @@ "key" : "manufacturerId" }, { "value" : "94421589-82", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-685009777402686436343960", "key" : "partInstanceId" }, { "value" : "Company 6", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 6", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -163774,13 +163774,13 @@ "key" : "manufacturerId" }, { "value" : "85023955-75", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-974454300561654889409059", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -163913,13 +163913,13 @@ "key" : "manufacturerId" }, { "value" : "13769860-47", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-097467415283383577076394", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -164052,13 +164052,13 @@ "key" : "manufacturerId" }, { "value" : "36643162-35", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-469042080934096804161465", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -164191,13 +164191,13 @@ "key" : "manufacturerId" }, { "value" : "54165444-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-619204814130822459941944", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -164330,13 +164330,13 @@ "key" : "manufacturerId" }, { "value" : "22768257-25", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-847829123372928729703626", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -164469,13 +164469,13 @@ "key" : "manufacturerId" }, { "value" : "65529521-37", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-541984649456838493855012", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -164608,13 +164608,13 @@ "key" : "manufacturerId" }, { "value" : "58471477-24", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-235532144731369285367922", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -164747,13 +164747,13 @@ "key" : "manufacturerId" }, { "value" : "09002013-68", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-764968564635848033102370", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -164886,13 +164886,13 @@ "key" : "manufacturerId" }, { "value" : "43501996-98", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-875672695094071829942132", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -165025,13 +165025,13 @@ "key" : "manufacturerId" }, { "value" : "77795937-13", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-439378752764749866943526", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -165164,13 +165164,13 @@ "key" : "manufacturerId" }, { "value" : "20125432-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-693787369495971897920451", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -165303,13 +165303,13 @@ "key" : "manufacturerId" }, { "value" : "19073706-76", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-505208852529131657864901", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -165442,13 +165442,13 @@ "key" : "manufacturerId" }, { "value" : "45415162-57", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-966970944530588040466745", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -165581,13 +165581,13 @@ "key" : "manufacturerId" }, { "value" : "78141846-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-917624356265437189507515", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -165720,13 +165720,13 @@ "key" : "manufacturerId" }, { "value" : "81324139-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-493450131978668699100774", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000000815DMY", @@ -165859,13 +165859,13 @@ "key" : "manufacturerId" }, { "value" : "57929013-09", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-650327009718442560260145", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -165998,13 +165998,13 @@ "key" : "manufacturerId" }, { "value" : "61184040-23", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-481529331847464441223782", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -166137,13 +166137,13 @@ "key" : "manufacturerId" }, { "value" : "78744126-74", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-547861897175055713666862", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS1234567890ZZ", @@ -166276,13 +166276,13 @@ "key" : "manufacturerId" }, { "value" : "12093297-03", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-534631261225749200522502", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -166415,13 +166415,13 @@ "key" : "manufacturerId" }, { "value" : "88111709-49", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-815263249267167046145620", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -166554,13 +166554,13 @@ "key" : "manufacturerId" }, { "value" : "00871379-44", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-004045696137237928488860", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -166693,13 +166693,13 @@ "key" : "manufacturerId" }, { "value" : "08901347-87", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-372967020898472388852086", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -166832,13 +166832,13 @@ "key" : "manufacturerId" }, { "value" : "45863316-60", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-104341205718762138329374", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -167038,19 +167038,19 @@ "key" : "manufacturerId" }, { "value" : "42555H1-52", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-651538877044779403448747", "key" : "partInstanceId" }, { "value" : "Company 2", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 2", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B2OM", @@ -167389,7 +167389,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -167529,13 +167529,13 @@ "key" : "manufacturerId" }, { "value" : "73919Q9-93", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-162199902527215720219955", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -167717,7 +167717,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -167864,7 +167864,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -168037,13 +168037,13 @@ "key" : "manufacturerId" }, { "value" : "55560M0-59", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-386494791906738152266778", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -168263,7 +168263,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003AXS3", @@ -168403,13 +168403,13 @@ "key" : "manufacturerId" }, { "value" : "98235W7-28", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-338203554649163708001668", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003CSGV", @@ -168591,7 +168591,7 @@ "key" : "batchId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "HUR", "sites" : [ { "catenaXsiteId" : "BPNS00000003B0Q0", @@ -168742,13 +168742,13 @@ "key" : "manufacturerId" }, { "value" : "36528D0-10", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-918636087890488440941983", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS00000003B5MJ", @@ -168880,19 +168880,19 @@ "key" : "manufacturerId" }, { "value" : "38049661-08", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-863627330185303438099030", "key" : "partInstanceId" }, { "value" : "Company 1", - "key" : "company" + "key" : "customKey:company" }, { "value" : "Brand 1", - "key" : "brand" + "key" : "customKey:brand" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -169084,7 +169084,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -169867,13 +169867,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-115445174246140951066641", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -170347,7 +170347,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { @@ -170673,13 +170673,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-977481276724065445855567", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -171119,13 +171119,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-828137125787287455447241", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -171565,13 +171565,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-485645309522244941900619", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -172011,13 +172011,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-337416006796549425928892", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -172457,13 +172457,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-037945966809951266943918", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -172903,13 +172903,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-776976109882988020968924", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -173349,13 +173349,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-934956959738616108763308", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -173795,13 +173795,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-285293624337086766771059", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -174241,13 +174241,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-849021036936084853818694", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -174687,13 +174687,13 @@ "key" : "manufacturerId" }, { "value" : "8840838-04", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-135372397104503960436427", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000004711DMY", @@ -175245,13 +175245,13 @@ "key" : "manufacturerId" }, { "value" : "8840837-48", - "key" : "manufacturerPartId" + "key" : "customKey:manufacturerPartId" }, { "value" : "NO-883830164520334043271156", "key" : "partInstanceId" } ], "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU", "sites" : [ { "catenaXsiteId" : "BPNS000001111DMY", @@ -175725,7 +175725,7 @@ "urn:samm:io.catenax.digital_product_passport:1.0.0#DigitalProductPassport" : [ { "serialization" : { "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", + "date" : "2022-02-04T14:48:54Z", "country" : "DEU" }, "quantity" : { diff --git a/local/testing/testdata/transform-and-upload.py b/local/testing/testdata/transform-and-upload.py index edf1c18763..9e532abb05 100644 --- a/local/testing/testdata/transform-and-upload.py +++ b/local/testing/testdata/transform-and-upload.py @@ -563,7 +563,6 @@ def search_for_asset_in_catalog(edc_catalog_path_, edc_upload_url_, edc_url_, he " ", "") if "PartAsPlanned" in tmp_key: - specific_asset_ids_temp = copy(tmp_data[tmp_key][0]["localIdentifiers"]) name_at_manufacturer = tmp_data[tmp_key][0]["partTypeInformation"]["nameAtManufacturer"].replace( " ", "")